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 }) ) } -