aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/SearchBox.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2019-03-04 19:11:12 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:54 +0300
commit8d88e399d68f892e073b9d075a3850953032fa3c (patch)
treec44d70670925e0d96c5c7e74d09934c9beedb7d0 /vnext/src/components/SearchBox.js
parent5e0b2264e306ffbda392e71e91298108ddec63f3 (diff)
Fix linter configuration
Fix some linter warnings
Diffstat (limited to 'vnext/src/components/SearchBox.js')
-rw-r--r--vnext/src/components/SearchBox.js2
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}>