diff --git a/web/src/routes/(user)/albums/[albumId=id]/[[photos=photos]]/[[assetId=id]]/+page.svelte b/web/src/routes/(user)/albums/[albumId=id]/[[photos=photos]]/[[assetId=id]]/+page.svelte index 2a78b02aa6..5b23cd0c21 100644 --- a/web/src/routes/(user)/albums/[albumId=id]/[[photos=photos]]/[[assetId=id]]/+page.svelte +++ b/web/src/routes/(user)/albums/[albumId=id]/[[photos=photos]]/[[assetId=id]]/+page.svelte @@ -104,8 +104,6 @@ let isShowActivity = $state(false); let isLiked: ActivityResponseDto | null = $state(null); let reactions: ActivityResponseDto[] = $state([]); - let globalWidth: number = $state(0); - let assetGridWidth: number = $derived(isShowActivity ? globalWidth - (globalWidth < 768 ? 360 : 460) : globalWidth); let albumOrder: AssetOrder | undefined = $state(data.album.order); const assetInteractionStore = createAssetInteractionStore(); @@ -430,7 +428,7 @@ }); -