feat: fix monthly yearly

This commit is contained in:
Nevo David 2025-12-26 18:14:32 +07:00
parent 1c61e76c9f
commit f98ae083ab
1 changed files with 3 additions and 1 deletions

View File

@ -221,7 +221,9 @@ export const FirstBillingComponent = () => {
]
}
</span>{' '}
{t('billing_per_month', '/ month')}
{period === 'MONTHLY'
? t('billing_per_month', '/ month')
: t('billing_per_year', '/ year')}
</div>
</div>
),