bug fixed

This commit is contained in:
Samandar Turgunboyev
2026-02-03 18:56:12 +05:00
parent 0fd6bb9906
commit d5106d85e9
3 changed files with 7 additions and 60 deletions

View File

@@ -2,11 +2,8 @@ export interface UserData {
id: number;
username: string;
first_name: string;
last_name: string;
middle_name: null | string;
gender: "M" | "F" | null;
region: null | string;
address: null | string;
name: string;
short_name: string;
created_at: string;
password_set: boolean;
}