Fix conditional rendering bug in RepeatSection component

This commit is contained in:
Mo Tarbin 2024-07-14 17:45:19 -04:00
parent ba3331efe8
commit bc741d920a

View file

@ -509,7 +509,7 @@ const RepeatSection = ({
}}
>
Is this something that should be done when a thing state changes?{' '}
{!isPlusAccount(userProfile) && (
{userProfile && !isPlusAccount(userProfile) && (
<Chip variant='soft' color='warning'>
Not available in Basic Plan
</Chip>