diff --git a/web/apps/photos/src/components/Collections/CollectionHeader.tsx b/web/apps/photos/src/components/Collections/CollectionHeader.tsx index b7248c6fd7..483b77be34 100644 --- a/web/apps/photos/src/components/Collections/CollectionHeader.tsx +++ b/web/apps/photos/src/components/Collections/CollectionHeader.tsx @@ -48,7 +48,6 @@ import { clearLocalTrash, emptyTrash, } from "ente-new/photos/services/collections"; -import { settingsSnapshot } from "ente-new/photos/services/settings"; import { usePhotosAppContext } from "ente-new/photos/types/context"; import { t } from "i18next"; import { GalleryContext } from "pages/gallery"; @@ -334,18 +333,13 @@ const CollectionOptions: React.FC = ({ > {t("download_favorites")} , - // TODO(FAV): - ...(settingsSnapshot().isInternalUser - ? [ - } - > - {t("share_favorites")} - , - ] - : []), + } + > + {t("share_favorites")} + , ]; break; @@ -621,8 +615,7 @@ const DownloadQuickOption: React.FC = ({ const showShareQuickOption = (type: CollectionSummaryType) => type == "album" || type == "folder" || - (type == "favorites" && - /* TODO(FAV): */ settingsSnapshot().isInternalUser) || + type == "favorites" || type == "outgoingShare" || type == "sharedOnlyViaLink" || type == "archived" ||