From 65dd824400e38086919e65e893182ef5d035ba3a Mon Sep 17 00:00:00 2001 From: jslno Date: Mon, 1 Dec 2025 22:15:36 +0100 Subject: [PATCH] fix: username is optional during sign-up --- docs/content/docs/plugins/username.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/docs/plugins/username.mdx b/docs/content/docs/plugins/username.mdx index 2a0d16733f..a1bff28592 100644 --- a/docs/content/docs/plugins/username.mdx +++ b/docs/content/docs/plugins/username.mdx @@ -85,7 +85,7 @@ type signUpEmail = { /** * The username of the user. */ - username: string = "test" + username?: string = "test" /** * An optional display username of the user. */