fix: add _csrf and _captcha field to ExceedLimit interface

This commit is contained in:
soyoka 2025-11-06 16:18:52 +09:00
parent 475ed926b8
commit a5aeb586b6

View File

@ -467,6 +467,8 @@ export const ExceedLimitScehma: Yup.SchemaOf<ExceedLimit> = Yup.object({
})
export interface ExceedLimit {
_csrf: string
_captcha: string
servers: number
shards: number
}