fix(admin-web): update AuthorizationStatus type to use AUTHORIZED

Changed type definition from 'ACTIVE' to 'AUTHORIZED' to match backend API.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-04 01:21:03 -08:00
parent f77ecff659
commit 258aff8bf7
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ export type RoleType =
/**
*
*/
export type AuthorizationStatus = 'ACTIVE' | 'REVOKED';
export type AuthorizationStatus = 'AUTHORIZED' | 'REVOKED';
/**
*