From 5dffbdcd0bffcf6487bdbe79a6a866d9d20c5ab2 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 19 Oct 2025 21:12:12 +0000 Subject: [PATCH] Load and persist style in site settings cgen-6efb837993bf45768497daf9fe7eaa20 --- client/components/admin/BannerSettings.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/client/components/admin/BannerSettings.tsx b/client/components/admin/BannerSettings.tsx index 76cccf51..59cd350c 100644 --- a/client/components/admin/BannerSettings.tsx +++ b/client/components/admin/BannerSettings.tsx @@ -15,6 +15,7 @@ export default function BannerSettings() { if (v && typeof v === "object") { setText(String((v as any).text || "ROBLOX AUTH SOON")); setEnabled((v as any).enabled !== false); + if ((v as any).style) setStyle(String((v as any).style)); } }) .catch(() => void 0);