diff --git a/packages/web/src/components/FlowSubstep/FilterConditions/index.jsx b/packages/web/src/components/FlowSubstep/FilterConditions/index.jsx index 9104e750..e015c83c 100644 --- a/packages/web/src/components/FlowSubstep/FilterConditions/index.jsx +++ b/packages/web/src/components/FlowSubstep/FilterConditions/index.jsx @@ -122,7 +122,7 @@ function FilterConditions(props) { {groups?.map((group, groupIndex) => ( - <> + {groupIndex !== 0 && } @@ -200,6 +200,7 @@ function FilterConditions(props) { edge="start" onClick={() => removeGroupItem(groupIndex, groupItemIndex)} sx={{ width: 61, height: 61 }} + disabled={groups.length === 1 && group.and.length === 1} > @@ -227,7 +228,7 @@ function FilterConditions(props) { )} - + ))}