diff --git a/package.json b/package.json index 8ccc5c3..43504fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@zk-email/sdk", - "version": "0.0.98", + "version": "0.0.99", "description": "ZK Email SDK for TypeScript", "main": "./dist/index.js", "module": "./dist/zk-email-sdk.es.js", diff --git a/src/blueprintValidation.ts b/src/blueprintValidation.ts index 8f078a9..73ff5ac 100644 --- a/src/blueprintValidation.ts +++ b/src/blueprintValidation.ts @@ -37,7 +37,7 @@ export const blueprintFormSchema = z.object({ ctx.addIssue({ code: "custom", message: "Must be a multiple of 64" }); } if (n > 10000) { - ctx.addIssue({ code: "custom", message: "Must be less than or equal to 10000" }); + ctx.addIssue({ code: "custom", message: "Must be less than or equal to 9984" }); } return n; }),