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 <noreply@paperclip.ing>
This commit is contained in:
Barkley Trimsworth
2026-04-01 09:14:45 +00:00
parent 3a695407cf
commit e27aaa7de6
+1 -1
View File
@@ -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;