From 7f354e54ab1b106ae96fdff10d728e51b3518dd9 Mon Sep 17 00:00:00 2001 From: Samuel James <143277412+SamuelSJames@users.noreply.github.com> Date: Sat, 20 Jun 2026 12:47:24 -0400 Subject: [PATCH] Fix missing ManagedUser type import breaking the frontend build (#29) The Phase 3 Users section uses the ManagedUser type but it was never added to the import from ../lib/api, which broke the CI frontend build (`tsc -b && vite build`: "Cannot find name 'ManagedUser'"). A local `tsc --noEmit` had passed off a stale incremental build cache and missed it. Add the type to the existing import; verified with a clean `tsc -b && vite build`. Co-authored-by: Samuel James Co-authored-by: Kiro --- src/pages/Settings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Settings.tsx b/src/pages/Settings.tsx index 4fc3c4c..dfd0445 100644 --- a/src/pages/Settings.tsx +++ b/src/pages/Settings.tsx @@ -1,6 +1,6 @@ import { useEffect, useRef, useState } from 'react' import { useSearchParams } from 'react-router-dom' -import { api, ApiError, type Integration, type AuthSession, type LoginEvent } from '../lib/api' +import { api, ApiError, type Integration, type AuthSession, type LoginEvent, type ManagedUser } from '../lib/api' import { useAuth } from '../lib/AuthContext' import { User,