Fix conditional rendering bug in RepeatSection component
This commit is contained in:
parent
ba3331efe8
commit
bc741d920a
1 changed files with 1 additions and 1 deletions
|
@ -509,7 +509,7 @@ const RepeatSection = ({
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Is this something that should be done when a thing state changes?{' '}
|
Is this something that should be done when a thing state changes?{' '}
|
||||||
{!isPlusAccount(userProfile) && (
|
{userProfile && !isPlusAccount(userProfile) && (
|
||||||
<Chip variant='soft' color='warning'>
|
<Chip variant='soft' color='warning'>
|
||||||
Not available in Basic Plan
|
Not available in Basic Plan
|
||||||
</Chip>
|
</Chip>
|
||||||
|
|
Loading…
Add table
Reference in a new issue