bugfix: organization not selected problem fixed. being logged out too often fixed.

This commit is contained in:
2026-07-12 17:51:31 +03:30
parent 39935688ad
commit 901d838a2c
14 changed files with 490 additions and 22 deletions

View File

@@ -5,6 +5,7 @@ export interface AuthResponse {
data: {
accessToken: string;
refreshToken: string;
accessTokenExpiresAt?: string;
user: User;
organizations: Organization[];
};