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)); } });