From 3b22cd6edbf2dabf161fe98fa367cf4399faf5e7 Mon Sep 17 00:00:00 2001 From: Sidney Alcantara Date: Tue, 3 Nov 2020 17:10:03 +1100 Subject: [PATCH] remove console.logs --- www/src/components/SideDrawer/index.tsx | 2 +- www/src/components/Table/index.tsx | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/www/src/components/SideDrawer/index.tsx b/www/src/components/SideDrawer/index.tsx index 5745c3d8..e1d02899 100644 --- a/www/src/components/SideDrawer/index.tsx +++ b/www/src/components/SideDrawer/index.tsx @@ -81,7 +81,7 @@ export default function SideDrawer() { tableState?.rows[cell.row].ref.path )}` ); - console.log(tableState?.tablePath, tableState?.rows[cell.row].id); + // console.log(tableState?.tablePath, tableState?.rows[cell.row].id); if (urlDocState.doc) { urlDocState.unsubscribe(); dispatchUrlDoc({ path: "", doc: null }); diff --git a/www/src/components/Table/index.tsx b/www/src/components/Table/index.tsx index 6d7f49e9..c87083ea 100644 --- a/www/src/components/Table/index.tsx +++ b/www/src/components/Table/index.tsx @@ -204,6 +204,7 @@ export default function Table() { }} onRowsUpdate={(e) => { const { action, fromRow, toRow, updated, cellKey } = e; + console.log(e); switch (action) { case "CELL_UPDATE": break;