diff --git a/typescript/packages/plugins/crossmint-headless-checkout/src/parameters.ts b/typescript/packages/plugins/crossmint-headless-checkout/src/parameters.ts index dc090dfe0..77201db3d 100644 --- a/typescript/packages/plugins/crossmint-headless-checkout/src/parameters.ts +++ b/typescript/packages/plugins/crossmint-headless-checkout/src/parameters.ts @@ -67,13 +67,7 @@ export const physicalAddressSchema = z .toUpperCase(), }) .superRefine((data, ctx) => { - // TODO: allow more countries - if (data.country !== "US") { - ctx.addIssue({ - code: z.ZodIssueCode.custom, - message: "Only 'US' country code is supported at this time", - }); - } + // TODO: allow more countries // Arsh update --> done! if (data.country === "US" && !data.state) { ctx.addIssue({