From dd6f3805e40005aa514eda647084ccf92721eb45 Mon Sep 17 00:00:00 2001 From: Cody Olsen Date: Thu, 21 Nov 2024 13:21:46 +0100 Subject: [PATCH] Update layout.tsx --- next-canary/src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next-canary/src/app/layout.tsx b/next-canary/src/app/layout.tsx index 91abdd2..21849ec 100644 --- a/next-canary/src/app/layout.tsx +++ b/next-canary/src/app/layout.tsx @@ -12,7 +12,7 @@ const THEME_QUERY = defineQuery(`*[_id == "theme"][0]{background,text}`) export async function generateViewport(): Promise { const {data} = await sanityFetch({query: THEME_QUERY}) return { - themeColor: data?.background, + // themeColor: data?.background, } }