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
This commit is contained in:
Classic298
2025-12-31 08:21:59 +01:00
committed by GitHub
parent c2c389f722
commit 450421b189

View File

@@ -284,7 +284,7 @@ type Config = {
};
ui?: {
pending_user_overlay_title?: string;
pending_user_overlay_description?: string;
pending_user_overlay_content?: string;
};
};