From 3306508bf03a67a7985d6d9de08195d01bbe98f8 Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Fri, 27 Mar 2026 12:43:59 +0100 Subject: [PATCH] fix: show Verified for valid VAT IDs regardless of exemption Use company_name presence to determine validity instead of vat_exempt, so Belgian B2B shows Verified + company info even though 21% VAT still applies. --- components/checkout/PlanSummary.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/checkout/PlanSummary.tsx b/components/checkout/PlanSummary.tsx index c2f4567..f75193e 100644 --- a/components/checkout/PlanSummary.tsx +++ b/components/checkout/PlanSummary.tsx @@ -84,7 +84,7 @@ export default function PlanSummary({ plan, interval, limit, country, vatId, onC } const isVatChecked = verifiedVatId !== '' && verifiedVatId === vatId - const isVatValid = isVatChecked && vatResult?.vat_exempt === true + const isVatValid = isVatChecked && !!vatResult?.company_name return (