From 30cee3f627a22d7fe9e8247c9406e1343fa2167d Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 9 Nov 2025 06:18:28 +0000 Subject: [PATCH] Prettier format pending files --- server/index.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/server/index.ts b/server/index.ts index 43873fa2..c78aa4af 100644 --- a/server/index.ts +++ b/server/index.ts @@ -119,8 +119,10 @@ const handleDiscordInteractions = async ( } // Generate verification code (random 6-digit) - const verificationCode = - Math.random().toString(36).substring(2, 8).toUpperCase(); + const verificationCode = Math.random() + .toString(36) + .substring(2, 8) + .toUpperCase(); const expiresAt = new Date(Date.now() + 15 * 60 * 1000).toISOString(); // 15 min // Store verification code in Supabase