diff --git a/src/components/attribute-filter.tsx b/src/components/attribute-filter.tsx
index f63002c..adaea95 100644
--- a/src/components/attribute-filter.tsx
+++ b/src/components/attribute-filter.tsx
@@ -289,9 +289,13 @@ const FilterModal = ({attr, position, targetFilterBottom, setShowFilterModal, se
} else if (operator === "aboveMean" || operator === "belowMean") {
return null;
} else if (operator === "top" || operator === "bottom") {
- return ;
+ return
+ ;
} else {
- return ;
+ return
+ ;
}
};