From 8c414627d735e9e82c84fd11ab9b013ba6679d46 Mon Sep 17 00:00:00 2001 From: titix Date: Thu, 18 Jul 2024 13:49:34 -0300 Subject: [PATCH] style: eslint --- src/components/SearchBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SearchBar.tsx b/src/components/SearchBar.tsx index 450c236..f4bdda0 100644 --- a/src/components/SearchBar.tsx +++ b/src/components/SearchBar.tsx @@ -7,7 +7,7 @@ interface SearchBarProps { export const SearchBar = ({ value, onChange }: SearchBarProps) => { const { t } = useTranslation(); - + const handleChange = (event: React.ChangeEvent) => { onChange(event.target.value); };