diff --git a/web/apps/photos/src/components/Collections/GalleryBarAndListHeader.tsx b/web/apps/photos/src/components/Collections/GalleryBarAndListHeader.tsx index 2b26c6c4a7..a92227aef5 100644 --- a/web/apps/photos/src/components/Collections/GalleryBarAndListHeader.tsx +++ b/web/apps/photos/src/components/Collections/GalleryBarAndListHeader.tsx @@ -1,5 +1,5 @@ import type { Collection } from "@/media/collection"; -import { PersonListHeader } from "@/new/photos/components/Gallery"; +import { PeopleHeader } from "@/new/photos/components/Gallery"; import { GalleryBarImpl, type GalleryBarImplProps, @@ -172,7 +172,7 @@ export const GalleryBarAndListHeader: React.FC = ({ onCollectionCast={() => setOpenAlbumCastDialog(true)} /> ) : ( - diff --git a/web/packages/new/photos/components/Gallery/index.tsx b/web/packages/new/photos/components/Gallery/index.tsx index 325c65bacf..05c4c55edd 100644 --- a/web/packages/new/photos/components/Gallery/index.tsx +++ b/web/packages/new/photos/components/Gallery/index.tsx @@ -53,12 +53,12 @@ export const SearchResultsHeader: React.FC = ({ ); -interface PeopleListHeaderProps { +interface PeopleHeaderProps { person: Person; appContext: NewAppContextPhotos; } -export const PersonListHeader: React.FC = ({ +export const PeopleHeader: React.FC = ({ person, appContext, }) => {