From 879972a91ff08188fa8edc4736dc5b11eb22f969 Mon Sep 17 00:00:00 2001 From: eireland Date: Fri, 26 Jan 2024 07:43:52 -0800 Subject: [PATCH] PR fix --- src/components/attribute-filter.tsx | 1 - 1 file changed, 1 deletion(-) 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});