We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 152e136 commit 9407cdbCopy full SHA for 9407cdb
frontend/src/components/common/Search/Search.tsx
@@ -32,7 +32,7 @@ const Search: React.FC<SearchProps> = ({
32
const ref = useRef<ComponentRef<'input'>>(null);
33
34
useEffect(() => {
35
- if (ref.current != null && value) {
+ if (ref.current !== null && value) {
36
ref.current.value = value;
37
}
38
}, [value]);
0 commit comments