fix case issues on userName
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 7s
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 7s
This commit is contained in:
@@ -6,16 +6,16 @@ export interface UserDto {
|
||||
createdAt: string;
|
||||
email: string;
|
||||
id: string;
|
||||
username: string;
|
||||
userName: string;
|
||||
}
|
||||
|
||||
export interface RegisterDto {
|
||||
username: string;
|
||||
userName: string;
|
||||
email: string;
|
||||
password: string;
|
||||
}
|
||||
|
||||
export interface LoginDto {
|
||||
username: string;
|
||||
userName: string;
|
||||
password: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user