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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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