diff --git a/src/App.tsx b/src/App.tsx
index cb722c24258bd240563cde88ea93a8b883b6151d..d7fb4f4eb33853ed7abf6073a19f63678e85542d 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -19,7 +19,7 @@ function App() {
   }
 
   return (
-    <div className={"overflow-hidden w-screen h-screen bg-zinc-950 text-white"} style={{fontFamily: "Inter"}}>
+    <div className={"overflow-hidden w-screen h-screen bg-zinc-950 text-white text-def"} style={{fontFamily: "Inter"}}>
       <ScreenWrapper backgroundImage={layout.background}>
         {
           layout.panels.map(panel => {
@@ -49,7 +49,9 @@ function App() {
                 </LayoutElement>
               )
             } catch (e) {
-
+              return (
+                <ErrorPanel/>
+              );
             }
           })
         }