add space after slash

This commit is contained in:
Abhinav 2022-07-05 17:24:16 +05:30
parent 61de2b4289
commit 6703d2a5b9

View file

@ -92,10 +92,11 @@ export function PlanRow({
{plan.price}{' '}
</Typography>{' '}
<Typography color="text.secondary" variant="body2">
/
{plan.period === PLAN_PERIOD.MONTH
? constants.MONTH_SHORT
: constants.YEAR_SHORT}
{`/ ${
plan.period === PLAN_PERIOD.MONTH
? constants.MONTH_SHORT
: constants.YEAR_SHORT
}`}
</Typography>
</Box>
</PlanButton>