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 <noreply@paperclip.ing>
This commit is contained in:
Barkley Trimsworth
2026-04-01 09:03:29 +00:00
parent 66dc9f92e2
commit 3a695407cf
+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.js";
import { getDevUser } from "../pages/DevLoginSelector";
interface DashboardProps {
sessionId: string | null;