diff --git a/apps/webapp/app/root.tsx b/apps/webapp/app/root.tsx index f46d3a65ff..d481a69ab4 100644 --- a/apps/webapp/app/root.tsx +++ b/apps/webapp/app/root.tsx @@ -23,7 +23,7 @@ export const links: LinksFunction = () => { export const meta: MetaFunction = ({ data }) => { const typedData = data as UseDataFunctionReturn; return [ - { title: `Trigger.dev${appEnvTitleTag(typedData.appEnv)}` }, + { title: typedData?.appEnv ? `Trigger.dev${appEnvTitleTag(typedData.appEnv)}` : "Trigger.dev" }, { name: "viewport", content: "width=1024, initial-scale=1", @@ -84,11 +84,13 @@ export function ErrorBoundary() { - - - - - + + + + + + +