File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export const links: LinksFunction = () => {
2323export const meta : MetaFunction = ( { data } ) => {
2424 const typedData = data as UseDataFunctionReturn < typeof loader > ;
2525 return [
26- { title : `Trigger.dev${ appEnvTitleTag ( typedData . appEnv ) } ` } ,
26+ { title : typedData ?. appEnv ? `Trigger.dev${ appEnvTitleTag ( typedData . appEnv ) } ` : "Trigger.dev" } ,
2727 {
2828 name : "viewport" ,
2929 content : "width=1024, initial-scale=1" ,
@@ -84,11 +84,13 @@ export function ErrorBoundary() {
8484 < Links />
8585 </ head >
8686 < body className = "h-full overflow-hidden bg-background-dimmed" >
87- < AppContainer >
88- < MainCenteredContainer >
89- < RouteErrorDisplay />
90- </ MainCenteredContainer >
91- </ AppContainer >
87+ < ShortcutsProvider >
88+ < AppContainer >
89+ < MainCenteredContainer >
90+ < RouteErrorDisplay />
91+ </ MainCenteredContainer >
92+ </ AppContainer >
93+ </ ShortcutsProvider >
9294 < Scripts />
9395 </ body >
9496 </ html >
You can’t perform that action at this time.
0 commit comments