From e27aaa7de66bc63537fe67f4974e989ceba783d5 Mon Sep 17 00:00:00 2001 From: Barkley Trimsworth Date: Wed, 1 Apr 2026 09:14:45 +0000 Subject: [PATCH] fix(portal): correct import path for DevLoginSelector in Dashboard Dashboard.tsx is at portal/sections/ (2 levels deep from src/), so the import path needs ../../pages/ not ../pages/. Co-Authored-By: Paperclip --- apps/web/src/portal/sections/Dashboard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/portal/sections/Dashboard.tsx b/apps/web/src/portal/sections/Dashboard.tsx index 8ac07b1..136a93a 100644 --- a/apps/web/src/portal/sections/Dashboard.tsx +++ b/apps/web/src/portal/sections/Dashboard.tsx @@ -1,7 +1,7 @@ import { useState, useEffect } from "react"; import { Navigate } from "react-router-dom"; import { Calendar, Clock, PawPrint, CreditCard, Star, ChevronRight, AlertTriangle } from "lucide-react"; -import { getDevUser } from "../pages/DevLoginSelector"; +import { getDevUser } from "../../pages/DevLoginSelector"; interface DashboardProps { sessionId: string | null;