From 977a8e972efdb93ef788457fd919d35460ac5241 Mon Sep 17 00:00:00 2001 From: mudkipdev Date: Sun, 1 Dec 2024 22:15:56 -0700 Subject: [PATCH] set default username to anon --- src/components/chat/Chat.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/chat/Chat.astro b/src/components/chat/Chat.astro index 0569112..57cc2c0 100644 --- a/src/components/chat/Chat.astro +++ b/src/components/chat/Chat.astro @@ -26,7 +26,7 @@ "pink" ]; - const username = "mudkip"; + const username = "anon"; const color = colors[Math.floor(Math.random() * colors.length)]; if (!input || !history) {