From a61dba33a8cb20cc72249ec908e12558df95ff58 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Wed, 6 Aug 2025 00:04:44 +0000 Subject: [PATCH] Add AuthProvider wrapper to App.tsx cgen-f6c8c1f4cd064a08baa83a1cd74af076 --- client/App.tsx | 150 +++++++++++++++++++++++++------------------------ 1 file changed, 76 insertions(+), 74 deletions(-) diff --git a/client/App.tsx b/client/App.tsx index ba9e19f1..c22571fd 100644 --- a/client/App.tsx +++ b/client/App.tsx @@ -27,85 +27,87 @@ const queryClient = new QueryClient(); const App = () => ( - - - - - - - } /> - } /> - } /> - } /> + + + + + + + + } /> + } /> + } /> + } /> - {/* Service routes */} - } /> - } /> - } /> - } /> - } /> + {/* Service routes */} + } /> + } /> + } /> + } /> + } /> - {/* Resource routes */} - } /> - } /> - } /> - } /> + {/* Resource routes */} + } /> + } /> + } /> + } /> - {/* Placeholder routes for navigation links */} - - } - /> - - } - /> - - } - /> + {/* Placeholder routes for navigation links */} + + } + /> + + } + /> + + } + /> - {/* Legal routes */} - - } - /> - - } - /> + {/* Legal routes */} + + } + /> + + } + /> - {/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */} - } /> - - - - + {/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */} + } /> + + + + + );