From bc741d920ad1babf355ea95c78d65bb1cc143d0b Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Sun, 14 Jul 2024 17:45:19 -0400 Subject: Fix conditional rendering bug in RepeatSection component --- src/views/ChoreEdit/RepeatSection.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/ChoreEdit/RepeatSection.jsx b/src/views/ChoreEdit/RepeatSection.jsx index 99f196f..bdf6738 100644 --- a/src/views/ChoreEdit/RepeatSection.jsx +++ b/src/views/ChoreEdit/RepeatSection.jsx @@ -509,7 +509,7 @@ const RepeatSection = ({ }} > Is this something that should be done when a thing state changes?{' '} - {!isPlusAccount(userProfile) && ( + {userProfile && !isPlusAccount(userProfile) && ( Not available in Basic Plan -- cgit