Skip to content

Commit

Permalink
refactor: use const instead of let
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedroh committed Jan 14, 2024
1 parent 753729d commit adc80c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/table-core/__tests__/RowSelection.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ describe('RowSelection', () => {
const data = makeData(2, 1)
const columns = generateColumns(data)

let state: Partial<TableState> = {
const state: Partial<TableState> = {
rowSelection: {},
}

Expand Down Expand Up @@ -359,7 +359,7 @@ describe('RowSelection', () => {
const data = makeData(2, 1)
const columns = generateColumns(data)

let state: Partial<TableState> = {
const state: Partial<TableState> = {
rowSelection: {},
}

Expand Down

0 comments on commit adc80c2

Please sign in to comment.