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