diff --git a/apps/photos/src/components/pages/sharedAlbum/SelectedFileOptions.tsx b/apps/photos/src/components/pages/sharedAlbum/SelectedFileOptions.tsx
index ed839cd4e1a28bada8daa965f060c1b48312bd15..3e86545f909131b7737ea135b057c1838193b843 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 8f99213d77e8e2c213ebfcb7737d16bdae693019..7987db23cb65dcd6f0e43d98a62001ddfeee41e4 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}
/>
)}