(tableId, table)
| 2385 | () => validateTables(tables) ? setValidTables(tables) : 0 |
| 2386 | ); |
| 2387 | const setTable = (tableId, table) => fluentTransaction( |
| 2388 | (tableId2) => validateTable(table, tableId2) ? setValidTable(tableId2, table) : 0, |
| 2389 | tableId |
| 2390 | ); |
| 2391 | const setRow = (tableId, rowId, row) => fluentTransaction( |
| 2392 | (tableId2, rowId2) => validateRow(tableId2, rowId2, row) ? setValidRow(tableId2, getOrCreateTable(tableId2), rowId2, row) : 0, |
| 2393 | tableId, |
nothing calls this directly
no test coverage detected
searching dependent graphs…