diff --git a/tgui/packages/tgui/routes.tsx b/tgui/packages/tgui/routes.tsx index b841c84b887..50b9eccce5e 100644 --- a/tgui/packages/tgui/routes.tsx +++ b/tgui/packages/tgui/routes.tsx @@ -7,7 +7,7 @@ import { Icon, Section, Stack } from './components'; import { Store } from 'common/redux'; -import { Window } from './layouts'; +import { NtosWindow, Window } from './layouts'; import { selectBackend } from './backend'; import { selectDebug } from './debug/selectors'; @@ -16,8 +16,8 @@ const requireInterface = require.context('./interfaces'); const routingError = (type: 'notFound' | 'missingExport', name: string) => () => { return ( - - + + {type === 'notFound' && ( Interface {name} was not found. @@ -28,17 +28,17 @@ const routingError = Interface {name} is missing an export. )} - - + + ); }; // Displays an empty Window with scrollable content const SuspendedWindow = () => { return ( - - - + + + ); };