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