Fix remaining component imports

This commit is contained in:
gpt-engineer-app[bot]
2025-11-03 22:08:59 +00:00
parent 6af981a6e4
commit 1a2b9f69cf
50 changed files with 92 additions and 50 deletions

View File

@@ -24,6 +24,9 @@ import Rides from "./pages/Rides";
import Search from "./pages/Search";
import Auth from "./pages/Auth";
// Temporary test component for error logging verification
import { TestErrorLogging } from "./test-error-logging";
// Detail routes (lazy-loaded)
const ParkDetail = lazy(() => import("./pages/ParkDetail"));
const RideDetail = lazy(() => import("./pages/RideDetail"));
@@ -362,6 +365,10 @@ function AppContent(): React.JSX.Element {
{/* Utility routes - lazy loaded */}
<Route path="/force-logout" element={<ForceLogout />} />
{/* Temporary test route - DELETE AFTER TESTING */}
<Route path="/test-error-logging" element={<TestErrorLogging />} />
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
<Route path="*" element={<NotFound />} />
</Routes>