We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a635c24 commit 001ea90Copy full SHA for 001ea90
apps/mobile/src/modules/settings/routes/EditRule.tsx
@@ -117,6 +117,9 @@ const ConditionSection: React.FC<{ filter: ActionFilter; index: number }> = ({ f
117
<GroupedInsetListSectionHeader label="Conditions" />
118
119
{filter.map((group, groupIndex) => {
120
+ if (!Array.isArray(group)) {
121
+ group = [group]
122
+ }
123
return (
124
<GroupedInsetListCard key={groupIndex} className="mb-6">
125
{group.map((item, itemIndex) => {
0 commit comments