Skip to content

Commit 64c9305

Browse files
committed
fix: use strict checking for value
1 parent 6c38a42 commit 64c9305

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)