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 = () => {
23
23
export const meta : MetaFunction = ( { data } ) => {
24
24
const typedData = data as UseDataFunctionReturn < typeof loader > ;
25
25
return [
26
- { title : `Trigger.dev${ appEnvTitleTag ( typedData . appEnv ) } ` } ,
26
+ { title : typedData ?. appEnv ? `Trigger.dev${ appEnvTitleTag ( typedData . appEnv ) } ` : "Trigger.dev" } ,
27
27
{
28
28
name : "viewport" ,
29
29
content : "width=1024, initial-scale=1" ,
@@ -84,11 +84,13 @@ export function ErrorBoundary() {
84
84
< Links />
85
85
</ head >
86
86
< 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 >
92
94
< Scripts />
93
95
</ body >
94
96
</ html >
You can’t perform that action at this time.
0 commit comments