From 3a695407cf22a73941628f8b1248f78e12f143d6 Mon Sep 17 00:00:00 2001 From: Barkley Trimsworth Date: Wed, 1 Apr 2026 09:03:29 +0000 Subject: [PATCH] fix(portal): remove .js extension from DevLoginSelector import in Dashboard TS2307: Cannot find module "../pages/DevLoginSelector.js" The source file is .tsx, not .ts/js. Fixes typecheck failure in CI. 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 8e27efc..8ac07b1 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.js"; +import { getDevUser } from "../pages/DevLoginSelector"; interface DashboardProps { sessionId: string | null;