From ebfc778cf35c65d2e63c122ab6b115a672b2c2f5 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 11 Jun 2024 09:54:35 -0500 Subject: [PATCH] Keep as optional prop --- web/src/components/filter/ReviewFilterGroup.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/components/filter/ReviewFilterGroup.tsx b/web/src/components/filter/ReviewFilterGroup.tsx index 55a624b52..eb4e4055e 100644 --- a/web/src/components/filter/ReviewFilterGroup.tsx +++ b/web/src/components/filter/ReviewFilterGroup.tsx @@ -643,7 +643,7 @@ type GeneralFilterContentProps = { updateLabelFilter: (labels: string[] | undefined) => void; setCurrentLabels: (labels: string[] | undefined) => void; updateZoneFilter?: (zones: string[] | undefined) => void; - setCurrentZones: (zones: string[] | undefined) => void; + setCurrentZones?: (zones: string[] | undefined) => void; onClose: () => void; }; export function GeneralFilterContent({ @@ -795,7 +795,7 @@ export function GeneralFilterContent({