From b6c36ccea0dbee343f66f285dbce0e07969a2140 Mon Sep 17 00:00:00 2001 From: Rosano <1680612+rosano@users.noreply.github.com> Date: Thu, 19 Mar 2026 22:18:48 +0100 Subject: [PATCH] docs: fix code block formatting in username plugin content (#8690) --- 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 507ce82394..3767de48f0 100644 --- a/docs/content/docs/plugins/username.mdx +++ b/docs/content/docs/plugins/username.mdx @@ -146,7 +146,7 @@ type isUsernameAvailable = { username: string = "new-username" } -if(response?.available) { +if (response?.available) { console.log("Username is available"); } else { console.log("Username is not available");