fix(api): fix api endpoint logic #3

This commit is contained in:
shafin-r
2025-08-17 19:59:14 +06:00
parent 4f23f357e6
commit e3673951c6
7 changed files with 231 additions and 170 deletions

4
types/auth.d.ts vendored
View File

@ -10,7 +10,7 @@ export interface UserData {
hsc_roll: number;
hsc_board: string;
college: string;
preparation_unit: "Science" | "Arts" | "Commerce" | string;
preparation_unit: "Science" | "Humanities" | "Business" | string;
}
export interface RegisterForm {
@ -24,7 +24,7 @@ export interface RegisterForm {
hsc_roll: number;
hsc_board: string;
college: string;
preparation_unit: "Science" | "Arts" | "Commerce" | string;
preparation_unit: "Science" | "Humanities" | "Business" | string;
}
export interface LoginForm {