aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/SearchBox.js
diff options
context:
space:
mode:
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}>