From 7e10f0b46220601dbc36f56b3e42436f5d79c2fd Mon Sep 17 00:00:00 2001 From: dtoro Date: Sun, 17 May 2026 22:50:27 +0200 Subject: [PATCH] fix(web): align lazy-PreviewOverlay layout with renamed OIDC bootstrap MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Stale import landed when 6b8c7ab rebased on top of the OIDC-rename commit. The call site updated to bootstrapSessionFromPhotoPrism but the import line kept the old bootstrapSessionFromCookies name — svelte-check caught it on the next pass. Co-Authored-By: Claude Opus 4.7 (1M context) --- web/src/routes/+layout.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/routes/+layout.svelte b/web/src/routes/+layout.svelte index 34c0492..1fe567f 100644 --- a/web/src/routes/+layout.svelte +++ b/web/src/routes/+layout.svelte @@ -9,7 +9,7 @@ import { ModeWatcher } from 'mode-watcher'; import { Toaster } from 'svelte-sonner'; import { isAuthenticated } from '$lib/stores/session.svelte'; - import { bootstrapSessionFromCookies } from '$lib/services/photoprism'; + import { bootstrapSessionFromPhotoPrism } from '$lib/services/photoprism'; import { setLeftSidebarWidth, view } from '$lib/stores/view.svelte'; import { resizable } from '$lib/actions/resizable'; import { queryClient } from '$lib/queryClient';