From f16d6a3fd87d3929d0cc307e1aa77ba9e9c93c5a Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Wed, 23 Aug 2023 16:17:14 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=B0=20Enable=20automatic=20tax=20colle?= =?UTF-8?q?ction?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/src/pages/api/stripe/checkout.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/web/src/pages/api/stripe/checkout.ts b/apps/web/src/pages/api/stripe/checkout.ts index a453a17c2..4361bc2a5 100644 --- a/apps/web/src/pages/api/stripe/checkout.ts +++ b/apps/web/src/pages/api/stripe/checkout.ts @@ -92,6 +92,9 @@ export default async function handler( quantity: 1, }, ], + automatic_tax: { + enabled: true, + }, }); if (session.url) {