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); };