From 83a362d105ef143fd9e80e20d4c778ae9d5f3ef7 Mon Sep 17 00:00:00 2001 From: J3E1 Date: Mon, 14 Oct 2024 16:57:13 +0530 Subject: [PATCH] Fix: Remove Deleted filter not reflecting issue --- .../empty-state/components/RecordTableEmptyStateSoftDelete.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateSoftDelete.tsx b/packages/twenty-front/src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateSoftDelete.tsx index 71eb045abda2..a025916be6ac 100644 --- a/packages/twenty-front/src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateSoftDelete.tsx +++ b/packages/twenty-front/src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateSoftDelete.tsx @@ -28,7 +28,7 @@ export const RecordTableEmptyStateSoftDelete = () => { deleteCombinedViewFilter( tableFilters.find( (filter) => - filter.definition.label === 'Deleted at' && + filter.definition.label === 'Deleted' && filter.operand === 'isNotEmpty', )?.id ?? '', );