diff options
author | Vitaly Takmazov | 2019-03-04 19:11:12 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:54 +0300 |
commit | 8d88e399d68f892e073b9d075a3850953032fa3c (patch) | |
tree | c44d70670925e0d96c5c7e74d09934c9beedb7d0 /vnext/src/components/SearchBox.js | |
parent | 5e0b2264e306ffbda392e71e91298108ddec63f3 (diff) |
Fix linter configuration
Fix some linter warnings
Diffstat (limited to 'vnext/src/components/SearchBox.js')
-rw-r--r-- | vnext/src/components/SearchBox.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/components/SearchBox.js b/vnext/src/components/SearchBox.js index edd7dfcf..a79100cd 100644 --- a/vnext/src/components/SearchBox.js +++ b/vnext/src/components/SearchBox.js @@ -8,7 +8,7 @@ function SearchBox({ onSearch, history, pathname }) { let onSubmit = (event) => { event.preventDefault(); onSearch(history, pathname, formState.values.search); - } + }; const [formState, { text }] = useFormState(); return ( <form onSubmit={onSubmit}> |