fix: username is optional during sign-up

This commit is contained in:
jslno
2025-12-01 22:15:36 +01:00
parent fbe51c8f93
commit 65dd824400

View File

@@ -85,7 +85,7 @@ type signUpEmail = {
/**
* The username of the user.
*/
username: string = "test"
username?: string = "test"
/**
* An optional display username of the user.
*/