Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
keyvankhademi committed Sep 13, 2024
1 parent e951664 commit 3d3d919
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions apps/staking/src/components/OracleIntegrityStaking/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ export const OracleIntegrityStaking = ({
<thead className="bg-pythpurple-400/30 font-light">
<tr>
<PublisherTableHeader>Pool</PublisherTableHeader>
<PublisherTableHeader>Estimated next APY</PublisherTableHeader>
<PublisherTableHeader>
Estimated next APY
</PublisherTableHeader>
<PublisherTableHeader>Historical APY</PublisherTableHeader>
<PublisherTableHeader>Number of feeds</PublisherTableHeader>
<PublisherTableHeader>Quality ranking</PublisherTableHeader>
Expand Down Expand Up @@ -1077,7 +1079,8 @@ const NewApy = ({
...(isSelf
? {
isSelf: true,
selfStake: publisher.selfStake + publisher.selfStakeDelta + children,
selfStake:
publisher.selfStake + publisher.selfStakeDelta + children,
}
: {
isSelf: false,
Expand Down

0 comments on commit 3d3d919

Please sign in to comment.