(sortAndOffset: SortAndOffset)
| 42 | ]), |
| 43 | ); |
| 44 | const setStateAndChange = (sortAndOffset: SortAndOffset) => { |
| 45 | setSortAndOffset(sortAndOffset); |
| 46 | getValue(onChange)?.(sortAndOffset); |
| 47 | }; |
| 48 | const handleSort = (cellId: Id | undefined) => { |
| 49 | if (getValue(sortOnClick)) { |
| 50 | const [currentCellId, currentDescending, currentOffset] = sortAndOffset(); |
no test coverage detected
searching dependent graphs…