From 450421b189cf7375cbbc5786388eb7fcd940d24e Mon Sep 17 00:00:00 2001 From: Classic298 <27028174+Classic298@users.noreply.github.com> Date: Wed, 31 Dec 2025 08:21:59 +0100 Subject: [PATCH] fix: correct pending_user_overlay type definition in Config (#20285) The Config type incorrectly defined 'pending_user_overlay_description' but the backend returns 'pending_user_overlay_content' and the AccountPending.svelte component correctly accesses that property. This fixes the type mismatch to align with the actual backend response. Fixes #20284 --- src/lib/stores/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/stores/index.ts b/src/lib/stores/index.ts index ac208ccc23..7d75c3253a 100644 --- a/src/lib/stores/index.ts +++ b/src/lib/stores/index.ts @@ -284,7 +284,7 @@ type Config = { }; ui?: { pending_user_overlay_title?: string; - pending_user_overlay_description?: string; + pending_user_overlay_content?: string; }; };