From a9ee6a7ce9e3620f99f4bd936950a44b83d1f246 Mon Sep 17 00:00:00 2001 From: Timon Date: Mon, 15 Jun 2026 16:22:59 +0200 Subject: [PATCH] fix(web): show asset arrows (#29010) * fix(web): show asset arrows * lint --- web/src/lib/components/timeline/TimelineAssetViewer.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/lib/components/timeline/TimelineAssetViewer.svelte b/web/src/lib/components/timeline/TimelineAssetViewer.svelte index 659414e363..2055afb445 100644 --- a/web/src/lib/components/timeline/TimelineAssetViewer.svelte +++ b/web/src/lib/components/timeline/TimelineAssetViewer.svelte @@ -15,7 +15,7 @@ import { navigate } from '$lib/utils/navigation'; import { toTimelineAsset } from '$lib/utils/timeline-util'; import { type AlbumResponseDto, type AssetResponseDto, type PersonResponseDto, getAssetInfo } from '@immich/sdk'; - import { onDestroy, onMount, untrack } from 'svelte'; + import { onDestroy, onMount } from 'svelte'; import { t } from 'svelte-i18n'; interface Props { @@ -82,7 +82,7 @@ $effect(() => { const asset = assetViewerManager.asset; if (asset) { - untrack(() => handlePromiseError(loadCloseAssets(asset))); + handlePromiseError(loadCloseAssets(asset)); } });