From a0ce7c9503f78b1244c5983843563a72575daa77 Mon Sep 17 00:00:00 2001 From: Julien Froidefond Date: Fri, 17 Oct 2025 11:18:33 +0200 Subject: [PATCH] fix: update background property to backgroundImage in ClientLayout for correct gradient rendering --- src/components/layout/ClientLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/layout/ClientLayout.tsx b/src/components/layout/ClientLayout.tsx index 637bdb9..7591c4a 100644 --- a/src/components/layout/ClientLayout.tsx +++ b/src/components/layout/ClientLayout.tsx @@ -34,7 +34,7 @@ export default function ClientLayout({ children, initialLibraries = [], initialF if (bg.type === "gradient" && bg.gradient) { return { - background: bg.gradient, + backgroundImage: bg.gradient, backgroundAttachment: "fixed" as const, }; }