Skip to content

Commit

Permalink
[Frontend] User Registration: fix username value.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarciani committed Nov 5, 2023
1 parent d1cc36f commit 207bcd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/app/modules/auth/core/_requests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export async function register(
password: string,
) {
return await new CreateUserApi().createUser({
username: email,
username: username,
email: email,
password: password,
})
Expand Down

0 comments on commit 207bcd4

Please sign in to comment.