diff --git a/src/components/attribute-filter.tsx b/src/components/attribute-filter.tsx index 590a1e8..f63002c 100644 --- a/src/components/attribute-filter.tsx +++ b/src/components/attribute-filter.tsx @@ -196,7 +196,6 @@ const FilterModal = ({attr, position, targetFilterBottom, setShowFilterModal, se // Change filter-operator-selection-container height if window is shorter than dropdown useEffect(() => { if (showOperatorSelectionModal) { - console.log("dropdownBottom && dropdownBottom > windowHeight", dropdownBottom, windowHeight, dropdownBottom && dropdownBottom > windowHeight); if (dropdownBottom && dropdownBottom > windowHeight) { const cutOffAmount = dropdownBottom - windowHeight; setOperatorSelectionListHeight({height: 190 - cutOffAmount - 3});