From a5aeb586b6c5b566665b2d86e681a4f60fed9954 Mon Sep 17 00:00:00 2001 From: soyoka <55011525+soy0ka@users.noreply.github.com> Date: Thu, 6 Nov 2025 16:18:52 +0900 Subject: [PATCH] fix: add _csrf and _captcha field to ExceedLimit interface --- utils/Yup.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/Yup.ts b/utils/Yup.ts index 3ca9981..dea7b4d 100644 --- a/utils/Yup.ts +++ b/utils/Yup.ts @@ -467,6 +467,8 @@ export const ExceedLimitScehma: Yup.SchemaOf = Yup.object({ }) export interface ExceedLimit { + _csrf: string + _captcha: string servers: number shards: number }