From 8247163362943bae1fc39a3e27bb897dc4c77877 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Tue, 18 Feb 2025 22:36:11 +0100 Subject: [PATCH] Update --- web/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/layout.tsx b/web/app/layout.tsx index e8bbe35..e2f80d0 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 ?? "ProxMenux"} + {typeof metadata.title === "string" ? metadata.title : (metadata.title?.default ?? "ProxMenux")}