diff options
Diffstat (limited to 'FrontEnd/src/http/user.ts')
-rw-r--r-- | FrontEnd/src/http/user.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FrontEnd/src/http/user.ts b/FrontEnd/src/http/user.ts index 5f117078..3a5aa9fc 100644 --- a/FrontEnd/src/http/user.ts +++ b/FrontEnd/src/http/user.ts @@ -16,7 +16,7 @@ export const kUserPermissionList = [ kHighlightTimelineManagement, ] as const; -export type UserPermission = typeof kUserPermissionList[number]; +export type UserPermission = (typeof kUserPermissionList)[number]; export interface HttpUser { uniqueId: string; |