diff --git a/Speed/CreateServerModal.tsx b/Speed/CreateServerModal.tsx index 8440d63..7e88bc3 100644 --- a/Speed/CreateServerModal.tsx +++ b/Speed/CreateServerModal.tsx @@ -68,6 +68,10 @@ const CreateServerModal = ({ nodeId, userId, open, onClose }: Props) => { z.literal(''), z.preprocess(Number, z.number().min(0)), ]), + rateLimit: z.union([ // 新增 + z.literal(''), + z.preprocess(Number, z.number().min(0)), + ]), accountPassword: password(usKeyboardCharacters()).nonempty(), shouldCreateServer: z.literal(true), startOnCompletion: z.boolean(),