Skip to content

Commit 8e1d2aa

Browse files
committed
fix: use strict checking for value
1 parent d64e1f4 commit 8e1d2aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/components/snapshot/AuthDomain.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function AuthDomain({ dispatch, userGroups, setParentAuthDomain }: Readonly<Auth
5757
setParentAuthDomain(authDomain);
5858
setSelectedAuthDomain(authDomain);
5959
}}
60-
value={selectedAuthDomain || ''}
60+
value={selectedAuthDomain ?? ''}
6161
/>
6262
</>
6363
);

0 commit comments

Comments
 (0)