Fix issue with variable accessor

This commit is contained in:
Amruth Pillai
2022-10-15 23:47:16 +02:00
parent 284a39aa77
commit 3a7b98d30e
4 changed files with 5 additions and 5 deletions

View File

@ -18,8 +18,8 @@ export type LoginWithGoogleParams = {
export type RegisterParams = {
name: string;
username: string;
email: string;
username: string;
password: string;
};