From a1535aed91a256f19ee02a9249cea480334f26b3 Mon Sep 17 00:00:00 2001 From: Mateusz Kwasniewski Date: Mon, 27 Mar 2023 13:17:37 +0200 Subject: [PATCH] fix: error boundary plausible (#3389) --- frontend/src/component/App.tsx | 104 +++++++++++++++++---------------- 1 file changed, 55 insertions(+), 49 deletions(-) diff --git a/frontend/src/component/App.tsx b/frontend/src/component/App.tsx index 8f8fef5220..65a50202c2 100644 --- a/frontend/src/component/App.tsx +++ b/frontend/src/component/App.tsx @@ -48,61 +48,67 @@ export const App = () => { return ( - - }> - - } - elseShow={ - <> - } - /> - - - - {availableRoutes.map(route => ( + + + + }> + } + elseShow={ + <> + } + /> + + + + {availableRoutes.map(route => ( + + + + } + /> + ))} - - + } /> - ))} - } - /> - } - /> - + } + /> + - + - - - - } - /> - - - + + + + } + /> + + + + ); };