From 264f985ff753a09a145bc60c9de490ad66e4b05d Mon Sep 17 00:00:00 2001 From: bkellam Date: Fri, 12 Dec 2025 12:31:04 -0800 Subject: [PATCH] fix build --- packages/web/src/ee/features/billing/components/checkout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/web/src/ee/features/billing/components/checkout.tsx b/packages/web/src/ee/features/billing/components/checkout.tsx index 980c6cf2..41dc7dc4 100644 --- a/packages/web/src/ee/features/billing/components/checkout.tsx +++ b/packages/web/src/ee/features/billing/components/checkout.tsx @@ -30,7 +30,7 @@ export const Checkout = () => { variant: "destructive", }); captureEvent('wa_onboard_checkout_fail', { - error: errorMessage, + errorCode: errorMessage, }); } }, [errorCode, errorMessage, toast, captureEvent]); @@ -45,7 +45,7 @@ export const Checkout = () => { variant: "destructive", }) captureEvent('wa_onboard_checkout_fail', { - error: response.errorCode, + errorCode: response.errorCode, }); } else { captureEvent('wa_onboard_checkout_success', {});