From 752ae51f462ee7428aea6fc4c1c91a44f2509608 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Sat, 7 Sep 2024 16:59:10 +0530 Subject: [PATCH] ns --- .../src/components/Search/SearchBar/searchInput/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/apps/photos/src/components/Search/SearchBar/searchInput/index.tsx b/web/apps/photos/src/components/Search/SearchBar/searchInput/index.tsx index cf819121ab..ca999aec69 100644 --- a/web/apps/photos/src/components/Search/SearchBar/searchInput/index.tsx +++ b/web/apps/photos/src/components/Search/SearchBar/searchInput/index.tsx @@ -49,7 +49,7 @@ import MenuWithPeople from "./MenuWithPeople"; const { Option, ValueContainer } = components; -interface Iprops { +interface SearchInputProps { isOpen: boolean; updateSearch: UpdateSearch; setIsOpen: (value: boolean) => void; @@ -68,7 +68,7 @@ const VisibleInput = (props) => ( ); -export default function SearchInput(props: Iprops) { +export default function SearchInput(props: SearchInputProps) { const selectRef = useRef(null); const [value, setValue] = useState(null); const appContext = useContext(AppContext);