mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 14:31:13 -05:00
Fix remaining component imports
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user