From 30ff7b71d9d159ced263a5330d70d53b97393157 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Wed, 13 May 2026 20:49:43 -0500 Subject: [PATCH] refactor(app): changed ways we get data so we can have better reasons why app no worky --- frontend/index.html | 1 + frontend/src/components/Header.tsx | 19 +++++++- frontend/src/components/NotFound.tsx | 51 ++++++++++++++++++++ frontend/src/components/Sidebar/AdminBar.tsx | 10 ++-- frontend/src/lib/apiHelper.ts | 40 +++++++++++++++ frontend/src/lib/auth-client.ts | 9 ++++ frontend/src/main.tsx | 8 ++- frontend/src/routeTree.gen.ts | 42 ++++++++++++++++ frontend/src/routes/app-down.tsx | 51 ++++++++++++++++++++ frontend/src/routes/forbidden.tsx | 41 ++++++++++++++++ frontend/src/routes/index.tsx | 21 ++++++-- 11 files changed, 284 insertions(+), 9 deletions(-) create mode 100644 frontend/src/components/NotFound.tsx create mode 100644 frontend/src/lib/apiHelper.ts create mode 100644 frontend/src/routes/app-down.tsx create mode 100644 frontend/src/routes/forbidden.tsx diff --git a/frontend/index.html b/frontend/index.html index eae9bd0..e71f923 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -7,6 +7,7 @@ Logistics Support Tool +