Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
fix(code): fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcnk committed Oct 18, 2023
1 parent 03efbd2 commit 624cbf1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/components/accounts/accounts-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,9 @@ export const AccountsTable = ({
{header.isPlaceholder
? null
: flexRender(
header.column.columnDef.header,
header.getContext()
)}
header.column.columnDef.header,
header.getContext()
)}
</TableHead>
)
})}
Expand Down
6 changes: 3 additions & 3 deletions src/components/staking/staking-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,9 @@ export const StakingTable = ({
{header.isPlaceholder
? null
: flexRender(
header.column.columnDef.header,
header.getContext()
)}
header.column.columnDef.header,
header.getContext()
)}
</TableHead>
)
})}
Expand Down
6 changes: 3 additions & 3 deletions src/components/transactions/transactions-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,9 @@ export const TransactionsTable = ({
{header.isPlaceholder
? null
: flexRender(
header.column.columnDef.header,
header.getContext()
)}
header.column.columnDef.header,
header.getContext()
)}
</TableHead>
)
})}
Expand Down

0 comments on commit 624cbf1

Please sign in to comment.