Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions src/components/HighTable/HighTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ export default function HighTable({
return propMaxRowNumber ?? numRows
}, [propMaxRowNumber, numRows])

// TODO(SL): pass columnDescriptors as a prop instead of reading them from data
const columnNames = useMemo(() => data.columnDescriptors.map(d => d.name), [data.columnDescriptors])

const headerHeight = useMemo(() => {
Expand Down Expand Up @@ -139,10 +138,6 @@ export default function HighTable({
padding={padding}
>
<CellNavigationProvider
/**
* Recreate a context if a new data frame is passed, because the focused cell might not exist anymore
*/
key={dataId}
dataId={dataId}
focus={focus}
numRows={numRows}
Expand Down