Skip to content

Commit

Permalink
fix(ui): remove unused argument from sortRewardsFn
Browse files Browse the repository at this point in the history
  • Loading branch information
drichar committed Jul 19, 2024
1 parent 7784590 commit c7ae142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/ValidatorTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export function ValidatorTable({
}
}

const sortRewardsFn: SortingFn<Validator> = (rowA, rowB, columnId) => {
const sortRewardsFn: SortingFn<Validator> = (rowA, rowB) => {
const a = rowA.original
const b = rowB.original

Expand Down

0 comments on commit c7ae142

Please sign in to comment.