diff --git a/frontend/src/types/user.ts b/frontend/src/types/user.ts index 5099d82..1c13a9c 100644 --- a/frontend/src/types/user.ts +++ b/frontend/src/types/user.ts @@ -8,6 +8,7 @@ export interface User { bio?: string; role?: "user" | "admin" | "moderator"; status?: "active" | "verification" | "suspended" | "pending" | "deleted"; + twoFactorEnabled?: boolean; createdAt: string; }