From 518d76e97221aaac1bccaae7688d6205ac300e4d Mon Sep 17 00:00:00 2001 From: Nevo David Date: Tue, 25 Nov 2025 14:27:34 +0700 Subject: [PATCH] feat: billing fix --- .../billing/main.billing.component.tsx | 37 +++++-------------- 1 file changed, 9 insertions(+), 28 deletions(-) diff --git a/apps/frontend/src/components/billing/main.billing.component.tsx b/apps/frontend/src/components/billing/main.billing.component.tsx index 250b9ae5..03feb5fd 100644 --- a/apps/frontend/src/components/billing/main.billing.component.tsx +++ b/apps/frontend/src/components/billing/main.billing.component.tsx @@ -150,31 +150,8 @@ const Info: FC<{ const t = useT(); return ( -
- - - +
- {t('we_are_sorry_to_see_you_go', 'We are sorry to see you go :(')} -
{t( 'would_you_mind_shortly_tell_us_what_we_could_have_done_better', 'Would you mind shortly tell us what we could have done better?' @@ -192,7 +169,9 @@ const Info: FC<{
@@ -283,13 +262,15 @@ export const MainBillingComponent: FC<{ ) { const info = await new Promise((res) => { modal.openModal({ - title: '', - withCloseButton: false, + title: t( + 'we_are_sorry_to_see_you_go', + 'We are sorry to see you go :(' + ), + withCloseButton: true, classNames: { modal: 'bg-transparent text-textColor', }, children: res(e)} />, - size: 'auto', }); }); setLoading(true);