Revert "Update App.tsx"

This reverts commit 04ee3e2e98.
This commit is contained in:
alorig
2025-11-28 06:41:24 +05:00
parent 362be640a9
commit 7733f93e57

View File

@@ -16,7 +16,6 @@ import NotFound from "./pages/OtherPage/NotFound";
// Lazy load all other pages - only loads when navigated to
const Home = lazy(() => import("./pages/Dashboard/Home"));
const AIControlHub = lazy(() => import("./pages/AIControlHub"));
// Planner Module - Lazy loaded
const PlannerDashboard = lazy(() => import("./pages/Planner/Dashboard"));
@@ -178,11 +177,6 @@ export default function App() {
<Home />
</Suspense>
} />
<Route path="/ai-control-hub" element={
<Suspense fallback={null}>
<AIControlHub />
</Suspense>
} />
{/* Planner Module - Redirect dashboard to keywords */}
<Route path="/planner" element={<Navigate to="/planner/keywords" replace />} />