resolve confilict

This commit is contained in:
marshal
2026-06-05 13:06:16 +03:00
82 changed files with 3296 additions and 65 deletions

View File

@@ -55,3 +55,10 @@ export interface AuthTokens {
export interface LoginResponse extends Partial<AuthTokens> {
mfaRequired?: boolean;
}
// Additional types for Matrix form test
export interface User {
id: string;
name: string;
role: "ADMIN" | "MANAGER" | "CHIEF_EXECUTIVE";
}

View File

@@ -11,3 +11,5 @@ export const useAuth = () => {
return context;
};