From e600569d85801b74644fd733606db0cafb1d587a Mon Sep 17 00:00:00 2001 From: HendrikThePendric Date: Mon, 16 Dec 2024 14:07:45 +0100 Subject: [PATCH] chore: remove redundant TODO comment --- src/actions/dashboardsFilter.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/actions/dashboardsFilter.js b/src/actions/dashboardsFilter.js index 24f2cc54d..276b96926 100644 --- a/src/actions/dashboardsFilter.js +++ b/src/actions/dashboardsFilter.js @@ -10,10 +10,6 @@ export const acSetDashboardsFilter = (value) => ({ value, }) -/* TODO: Possibly this action can be removed if we keep a an input - * with type="search". Clicking the cross in the input will send an - * an empty string as payload to the onchange handler. So just calling - * acSetDashboardsFilter on change will be enough */ export const acClearDashboardsFilter = () => ({ type: CLEAR_DASHBOARDS_FILTER, })