From cb959e93f27fdc932267c34c3d073cb8d9c13e54 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 10 Sep 2025 18:48:42 +0300 Subject: [PATCH] chore(react/collections/table): fix type error --- apps/client/src/widgets/collections/table/columns.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/client/src/widgets/collections/table/columns.tsx b/apps/client/src/widgets/collections/table/columns.tsx index 6646d643e..2edcccaf8 100644 --- a/apps/client/src/widgets/collections/table/columns.tsx +++ b/apps/client/src/widgets/collections/table/columns.tsx @@ -95,10 +95,6 @@ export function buildColumnDefinitions({ info, movableRows, existingColumnData, editor: "input", formatter: wrapFormatter(({ cell }) => { const { noteId, iconClass, colorClass } = cell.getRow().getData(); - if (!noteId) { - return ""; - } - return {" "}{cell.getValue()} ;