From f19fb2ca31e36e6229ef6ab5f5877363bf0b727d Mon Sep 17 00:00:00 2001 From: MacRimi Date: Tue, 18 Feb 2025 22:24:08 +0100 Subject: [PATCH] Update --- web/app/layout.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/app/layout.tsx b/web/app/layout.tsx index f6f3f9f..1cc8586 100644 --- a/web/app/layout.tsx +++ b/web/app/layout.tsx @@ -13,7 +13,7 @@ export default function RootLayout({ children }: { children: React.ReactNode }) return ( - {metadata.title?.default} + {typeof metadata.title === "string" ? metadata.title : metadata.title?.default} @@ -35,4 +35,3 @@ export default function RootLayout({ children }: { children: React.ReactNode }) ) } -