diff --git a/apps/ui/src/components/views/overview-view.tsx b/apps/ui/src/components/views/overview-view.tsx index 823ca132..156366c9 100644 --- a/apps/ui/src/components/views/overview-view.tsx +++ b/apps/ui/src/components/views/overview-view.tsx @@ -5,7 +5,6 @@ * recent completions, and alerts. Quick navigation to any project or feature. */ -import { useNavigate } from '@tanstack/react-router'; import { useMultiProjectStatus } from '@/hooks/use-multi-project-status'; import { isElectron } from '@/lib/electron'; import { isMac } from '@/lib/utils'; @@ -25,17 +24,11 @@ import { Clock, Bot, Bell, - ArrowLeft, } from 'lucide-react'; export function OverviewView() { - const navigate = useNavigate(); const { overview, isLoading, error, refresh } = useMultiProjectStatus(15000); // Refresh every 15s - const handleBackToDashboard = () => { - navigate({ to: '/dashboard' }); - }; - return (
{/* Header */} @@ -49,15 +42,12 @@ export function OverviewView() { )}
-
-

Projects Overview

+

Dashboard

{overview ? `${overview.aggregate.projectCounts.total} projects` : 'Loading...'}

@@ -222,9 +212,9 @@ export function OverviewView() {

Create or open a project to get started

- +

+ Use the sidebar to create or open a project +

) : (