Skip to content

Commit

Permalink
feat: wp
Browse files Browse the repository at this point in the history
  • Loading branch information
BLuEScioN committed Oct 30, 2024
1 parent 5d71d11 commit 36c1eb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/signer/[signerKey]/StackingHistoryTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export function SignersTableLayout({
isFetching: boolean;
}) {

Check warning on line 164 in src/app/signer/[signerKey]/StackingHistoryTable.tsx

View check run for this annotation

Codecov / codecov/patch

src/app/signer/[signerKey]/StackingHistoryTable.tsx#L164

Added line #L164 was not covered by tests
return (
<Section title={title} topRight={topRight}>
<Section title={title} topRight={topRight} py={hasNextPage ? 0 : 6}>
<ScrollableBox>
<StyledTable width="full">
<Thead>{signersTableHeaders}</Thead>
Expand Down Expand Up @@ -246,7 +246,7 @@ const SignersTableBase = ({ signerKey }: { signerKey: string }) => {
signersTableHeaders={<SignersTableHeaders />}
signersTableRows={signerData.map((cycleData, i) => (
<SignerTableRow

Check warning on line 248 in src/app/signer/[signerKey]/StackingHistoryTable.tsx

View check run for this annotation

Codecov / codecov/patch

src/app/signer/[signerKey]/StackingHistoryTable.tsx#L248

Added line #L248 was not covered by tests
key={`stacking-history-table-row-${cycleData.signerKey}`}
key={`stacking-history-table-row-${cycleData.cycleid}`}
index={i}
{...cycleData}
isFirst={i === 0}
Expand Down

0 comments on commit 36c1eb9

Please sign in to comment.