Skip to content

Commit 9407cdb

Browse files
committed
fixes after review
1 parent 152e136 commit 9407cdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/common/Search/Search.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const Search: React.FC<SearchProps> = ({
3232
const ref = useRef<ComponentRef<'input'>>(null);
3333

3434
useEffect(() => {
35-
if (ref.current != null && value) {
35+
if (ref.current !== null && value) {
3636
ref.current.value = value;
3737
}
3838
}, [value]);

0 commit comments

Comments
 (0)