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