diff --git a/apps/photos/src/components/pages/sharedAlbum/SelectedFileOptions.tsx b/apps/photos/src/components/pages/sharedAlbum/SelectedFileOptions.tsx
index ed839cd4e..3e86545f9 100644
--- a/apps/photos/src/components/pages/sharedAlbum/SelectedFileOptions.tsx
+++ b/apps/photos/src/components/pages/sharedAlbum/SelectedFileOptions.tsx
@@ -10,7 +10,6 @@ import { formatNumber } from 'utils/number/format';
interface Props {
count: number;
- ownCount: number;
clearSelection: () => void;
downloadFilesHelper: () => void;
}
@@ -18,7 +17,6 @@ interface Props {
const SelectedFileOptions = ({
downloadFilesHelper,
count,
- ownCount,
clearSelection,
}: Props) => {
const { isMobile } = useContext(AppContext);
@@ -31,8 +29,6 @@ const SelectedFileOptions = ({
{formatNumber(count)} {t('SELECTED')}{' '}
- {ownCount !== count &&
- `(${formatNumber(ownCount)} ${t('YOURS')})`}
diff --git a/apps/photos/src/pages/shared-albums/index.tsx b/apps/photos/src/pages/shared-albums/index.tsx
index 8f99213d7..7987db23c 100644
--- a/apps/photos/src/pages/shared-albums/index.tsx
+++ b/apps/photos/src/pages/shared-albums/index.tsx
@@ -599,7 +599,6 @@ export default function PublicCollectionGallery() {
downloadFilesHelper={downloadFilesHelper}
clearSelection={clearSelection}
count={selected.count}
- ownCount={selected.ownCount}
/>
)}