Changed portal settings to show free tier name instead of "Free"

refs PROD-255
This commit is contained in:
Djordje Vlaisavljevic 2023-12-12 12:41:07 +00:00
parent bba95ce034
commit b97f91f408

View File

@ -79,7 +79,7 @@ const SignupOptions: React.FC<{
tiersCheckboxes.push({
checked: (portalPlans.includes('free')),
disabled: isDisabled,
label: 'Free',
label: hasPortalImprovements ? tier.name : 'Free',
value: 'free',
onChange: (checked) => {
if (portalPlans.includes('free') && !checked) {