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 <ssamjame@amazon.com> Co-authored-by: Kiro <noreply@kiro.dev>
This commit is contained in:
parent
d863448495
commit
7f354e54ab
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue