Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/yield/YieldPushFeeV3.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ const YieldPushFeeV3 = ({ userDataPush, getUserDataPush, PUSHPoolstats, getPUSHP
{PUSHPoolstats ? (
<>
<Heading>PUSH Fee Staking Pool</Heading>
<APRText>
{/* <APRText>
Current APR
<SpanV2
color="#D53A94"
Expand All @@ -425,7 +425,7 @@ const YieldPushFeeV3 = ({ userDataPush, getUserDataPush, PUSHPoolstats, getPUSHP
&gt;{numberWithCommas(PUSHPoolstats?.stakingAPR)}% + Fee
</SpanV2>
<ToolTipAPR />
</APRText>
</APRText> */}
</>
) : (
<SkeletonContainer padding="5px 15px 0 15px">
Expand Down
7 changes: 4 additions & 3 deletions src/components/yield/YieldUniswapV3.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -268,15 +268,15 @@ const YieldUniswapV3 = ({ lpPoolStats, userDataLP, getLpPoolStats, getUserDataLP
{lpPoolStats ? (
<>
<Heading>Uniswap V2 LP Staking Pool</Heading>
<SecondaryText>
{/* <SecondaryText>
Current APR{' '}
<SpanV2
color="#D53A94"
fontWeight="600"
>
&gt;{numberWithCommas(lpPoolStats?.stakingAPR)}%
</SpanV2>
</SecondaryText>
</SecondaryText> */}
</>
) : (
<SkeletonContainer padding="5px 15px 0 15px">
Expand Down Expand Up @@ -310,7 +310,7 @@ const YieldUniswapV3 = ({ lpPoolStats, userDataLP, getLpPoolStats, getUserDataLP
color="#D53A94"
letterSpacing="normal"
>
{numberWithCommas(formatTokens(lpPoolStats?.rewardForCurrentEpoch))} PUSH
{/* {numberWithCommas(formatTokens(lpPoolStats?.rewardForCurrentEpoch))} PUSH */}0 PUSH
</H2V2>
</>
) : (
Expand Down Expand Up @@ -556,6 +556,7 @@ const YieldUniswapV3 = ({ lpPoolStats, userDataLP, getLpPoolStats, getUserDataLP
<Button
variant="primary"
size="medium"
disabled
block
onClick={() => {
handleStakingModal();
Expand Down
4 changes: 2 additions & 2 deletions src/sections/yield/NewYieldFarming.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ const NewYieldFarming = ({ setActiveTab }) => {
<>
<YieldAnnouncementSection
logo={'announcement'}
title={'New V2 Pools are now Live! Stake or migrate now.'}
title={'Staking Program has now ended.'}
body={
'Users who were part of the previous Push staking program, need to migrate to new pools to continue earning rewards. Click'
'Note: While UNI-V2 LP staking pool has ended, the Push Fee Staking Pool is designed to continue its staking mechanism. However, rewards for stakers will solely come from Core smart contract fee earnings.'
}
setActiveTab={setActiveTab}
/>
Expand Down
4 changes: 2 additions & 2 deletions src/sections/yield/YieldStatsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const YieldStatsSection = ({ getLpPoolStats, poolStats, setPoolStats }) => {
</StatsContainer>

{/* Time Left */}
<StatsContainer
{/* <StatsContainer
alignItems="baseline"
justifyContent="center"
background="#A17DEF"
Expand All @@ -147,7 +147,7 @@ const YieldStatsSection = ({ getLpPoolStats, poolStats, setPoolStats }) => {
) : (
<SkeletonLoader />
)}
</StatsContainer>
</StatsContainer> */}
</ItemHV2Modified>
);
};
Expand Down
Loading