aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui/SearchBox.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2019-12-12 15:11:37 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:55 +0300
commit526f5d3a2fc6a9bf5d20f8a34ca77acb4a3a9887 (patch)
tree8d82652f10622301151fba6d58a6475606c0a2e8 /vnext/src/ui/SearchBox.js
parent1787a35bfc29861aa53c6b8d1ea9b4f1d1572343 (diff)
Cleanup some tscheck warnings and remove remaining prop-types
Diffstat (limited to 'vnext/src/ui/SearchBox.js')
-rw-r--r--vnext/src/ui/SearchBox.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/vnext/src/ui/SearchBox.js b/vnext/src/ui/SearchBox.js
index dda97989..005739d8 100644
--- a/vnext/src/ui/SearchBox.js
+++ b/vnext/src/ui/SearchBox.js
@@ -14,10 +14,7 @@ import { useFormState } from 'react-use-form-state';
* @param {SearchBoxProps} props
*/
function SearchBox({ onSearch }) {
- /**
- * @type {(React.FormEvent<HTMLFormElement>)}
- */
- let onSubmit = (event) => {
+ let onSubmit = (/** @type React.FormEvent<HTMLFormElement> */ event) => {
event.preventDefault();
onSearch(formState.values.search);
};