From e008e87d6bc5cfde3e856f98125a6dfee559f881 Mon Sep 17 00:00:00 2001 From: Barry Yip Date: Thu, 15 May 2025 02:10:10 +0800 Subject: [PATCH] refactor: Remove unused random_string parameter from DiscordLoginSchema --- src/schemas.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/schemas.ts b/src/schemas.ts index 239532c..0d2518f 100644 --- a/src/schemas.ts +++ b/src/schemas.ts @@ -1,8 +1,7 @@ import { z } from "zod"; export const DiscordLoginSchema = z.object({ - token: z.string().optional(), - random_string: z.string().optional() + token: z.string().optional() }); export const SendMessageSchema = z.object({