Skip to content

Commit f98ae08

Browse files
committed
feat: fix monthly yearly
1 parent 1c61e76 commit f98ae08

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

apps/frontend/src/components/billing/first.billing.component.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,9 @@ export const FirstBillingComponent = () => {
221221
]
222222
}
223223
</span>{' '}
224-
{t('billing_per_month', '/ month')}
224+
{period === 'MONTHLY'
225+
? t('billing_per_month', '/ month')
226+
: t('billing_per_year', '/ year')}
225227
</div>
226228
</div>
227229
),

0 commit comments

Comments
 (0)