diff --git a/web/apps/photos/src/components/Collections/CollectionOptions/SharedCollectionOption.tsx b/web/apps/photos/src/components/Collections/CollectionOptions/SharedCollectionOption.tsx index b6c131e5d..12c4efda8 100644 --- a/web/apps/photos/src/components/Collections/CollectionOptions/SharedCollectionOption.tsx +++ b/web/apps/photos/src/components/Collections/CollectionOptions/SharedCollectionOption.tsx @@ -1,6 +1,7 @@ import { OverflowMenuOption } from "@ente/shared/components/OverflowMenu/option"; import ArchiveOutlined from "@mui/icons-material/ArchiveOutlined"; import LogoutIcon from "@mui/icons-material/Logout"; +import TvIcon from "@mui/icons-material/Tv"; import Unarchive from "@mui/icons-material/Unarchive"; import { t } from "i18next"; import { CollectionActions } from "."; @@ -45,6 +46,15 @@ export function SharedCollectionOption({ > {t("LEAVE_ALBUM")} + } + onClick={handleCollectionAction( + CollectionActions.SHOW_ALBUM_CAST_DIALOG, + false, + )} + > + {t("CAST_ALBUM_TO_TV")} + ); }