remove console.logs

This commit is contained in:
Sidney Alcantara
2020-11-03 17:10:03 +11:00
parent 5ff4e32beb
commit 3b22cd6edb
2 changed files with 2 additions and 1 deletions

View File

@@ -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 });

View File

@@ -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;