diff --git a/apps/web/src/portal/sections/Dashboard.tsx b/apps/web/src/portal/sections/Dashboard.tsx index f252e8a..43abe5c 100644 --- a/apps/web/src/portal/sections/Dashboard.tsx +++ b/apps/web/src/portal/sections/Dashboard.tsx @@ -1,5 +1,4 @@ import { useState, useEffect } from "react"; -import { Navigate } from "react-router-dom"; import { Calendar, Clock, PawPrint, CreditCard, Star, ChevronRight, AlertTriangle } from "lucide-react"; interface DashboardProps { @@ -184,7 +183,13 @@ export function Dashboard({ } if (!sessionId) { - return ; + return ( +
+
+

Please sign in to view your dashboard.

+
+
+ ); } const upcomingAppointments = getUpcomingAppointments();