From 63c3e1c23394f008102c9b1326e12d7913efdb99 Mon Sep 17 00:00:00 2001 From: Nevo David Date: Mon, 22 Dec 2025 21:15:14 +0700 Subject: [PATCH] fix: tolt --- .../src/components/billing/first.billing.component.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/frontend/src/components/billing/first.billing.component.tsx b/apps/frontend/src/components/billing/first.billing.component.tsx index 1381b5e2..928d2f4a 100644 --- a/apps/frontend/src/components/billing/first.billing.component.tsx +++ b/apps/frontend/src/components/billing/first.billing.component.tsx @@ -23,6 +23,7 @@ import { } from '@gitroom/frontend/components/billing/faq.component'; import { useT } from '@gitroom/react/translation/get.transation.service.client'; import { useUser } from '@gitroom/frontend/components/layout/user.context'; +import { useTolt } from '@gitroom/frontend/components/layout/tolt.script'; const ModeComponent = dynamic( () => import('@gitroom/frontend/components/layout/mode.component'), @@ -49,6 +50,7 @@ export const FirstBillingComponent = () => { const [period, setPeriod] = useState('MONTHLY'); const fetch = useFetch(); const t = useT(); + const tolt = useTolt(); useEffect(() => { setStripe(loadStripe(stripeClient)); @@ -61,6 +63,7 @@ export const FirstBillingComponent = () => { body: JSON.stringify({ billing: tier, period: period, + tolt: tolt(), }), }) ).json();