refactor(api): remove unused User import from verifications module
All checks were successful
Admin CI / build-and-push-web (push) Successful in 1m58s

This commit is contained in:
lafay
2026-04-08 16:40:19 +08:00
parent 0f86e5b9ee
commit 7e91c81d86

View File

@@ -1,5 +1,5 @@
import apiClient from './client' import apiClient from './client'
import type { ApiResponse, PaginatedResponse, User } from '@/types' import type { ApiResponse, PaginatedResponse } from '@/types'
export type UserIdentity = 'general' | 'student' | 'teacher' | 'staff' | 'alumni' | 'external' export type UserIdentity = 'general' | 'student' | 'teacher' | 'staff' | 'alumni' | 'external'
export type VerificationStatus = 'not_submitted' | 'pending' | 'approved' | 'rejected' export type VerificationStatus = 'not_submitted' | 'pending' | 'approved' | 'rejected'