From c7ae1428dc5e18bdf8ffb1258de3ed73721e47e4 Mon Sep 17 00:00:00 2001 From: Doug Richar Date: Fri, 19 Jul 2024 04:45:32 -0400 Subject: [PATCH] fix(ui): remove unused argument from sortRewardsFn --- ui/src/components/ValidatorTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/ValidatorTable.tsx b/ui/src/components/ValidatorTable.tsx index e52df7cf..0757cccb 100644 --- a/ui/src/components/ValidatorTable.tsx +++ b/ui/src/components/ValidatorTable.tsx @@ -104,7 +104,7 @@ export function ValidatorTable({ } } - const sortRewardsFn: SortingFn = (rowA, rowB, columnId) => { + const sortRewardsFn: SortingFn = (rowA, rowB) => { const a = rowA.original const b = rowB.original