Skip to content

Commit

Permalink
feat: bump to 1500
Browse files Browse the repository at this point in the history
  • Loading branch information
Majorfi committed Aug 1, 2024
1 parent 97726a6 commit 0f4a593
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions apps/vaults-v3/components/list/VaultsV3ListRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function VaultForwardAPR({currentVault}: {currentVault: TYDaemonVault}): ReactEl
<b className={'yearn--table-data-section-item-value'}>
<Renderable
shouldRender={!currentVault.apr.forwardAPR?.type.includes('new')}
/* TEMPORARY CODE TO NOTIFY 1000 ARB PER WEEK REWARD FOR SOME VAULTS */
/* TEMPORARY CODE TO NOTIFY 1500 ARB PER WEEK REWARD FOR SOME VAULTS */
fallback={'NEW'}>
{'⚑️ '}
<span
Expand Down Expand Up @@ -86,13 +86,13 @@ function VaultForwardAPR({currentVault}: {currentVault: TYDaemonVault}): ReactEl
</div>
</span>
</span>
{/* TEMPORARY CODE TO NOTIFY 1000 ARB PER WEEK REWARD FOR SOME VAULTS */}
{/* TEMPORARY CODE TO NOTIFY 1500 ARB PER WEEK REWARD FOR SOME VAULTS */}
<small
className={cl(
'whitespace-nowrap text-xs text-neutral-800 self-end',
hasPendleArbRewards ? '-mb-4' : ''
)}>
<Renderable shouldRender={hasPendleArbRewards}>{`+ 1000 ARB per week πŸš€`}</Renderable>
<Renderable shouldRender={hasPendleArbRewards}>{`+ 1500 ARB per week πŸš€`}</Renderable>
</small>
</div>
);
Expand All @@ -102,7 +102,7 @@ function VaultForwardAPR({currentVault}: {currentVault: TYDaemonVault}): ReactEl
<b className={'yearn--table-data-section-item-value'}>
<Renderable
shouldRender={!currentVault.apr.forwardAPR?.type.includes('new')}
/* TEMPORARY CODE TO NOTIFY 1000 ARB PER WEEK REWARD FOR SOME VAULTS */
/* TEMPORARY CODE TO NOTIFY 1500 ARB PER WEEK REWARD FOR SOME VAULTS */
fallback={'NEW'}>
<RenderAmount
value={currentVault.apr?.netAPR}
Expand All @@ -112,13 +112,13 @@ function VaultForwardAPR({currentVault}: {currentVault: TYDaemonVault}): ReactEl
/>
</Renderable>
</b>
{/* TEMPORARY CODE TO NOTIFY 1000 ARB PER WEEK REWARD FOR SOME VAULTS */}
{/* TEMPORARY CODE TO NOTIFY 1500 ARB PER WEEK REWARD FOR SOME VAULTS */}
<small
className={cl(
'whitespace-nowrap text-xs text-neutral-800 self-end',
hasPendleArbRewards ? '-mb-4' : ''
)}>
<Renderable shouldRender={hasPendleArbRewards}>{`+ 1000 ARB per week πŸš€`}</Renderable>
<Renderable shouldRender={hasPendleArbRewards}>{`+ 1500 ARB per week πŸš€`}</Renderable>
</small>
</div>
);
Expand Down Expand Up @@ -201,7 +201,7 @@ function VaultForwardAPR({currentVault}: {currentVault: TYDaemonVault}): ReactEl
<b className={'yearn--table-data-section-item-value whitespace-nowrap'}>
<Renderable
shouldRender={!currentVault.apr.forwardAPR?.type.includes('new')}
/* TEMPORARY CODE TO NOTIFY 1000 ARB PER WEEK REWARD FOR SOME VAULTS */
/* TEMPORARY CODE TO NOTIFY 1500 ARB PER WEEK REWARD FOR SOME VAULTS */
fallback={'NEW'}>
{'⚑️ '}
<span
Expand Down Expand Up @@ -252,13 +252,13 @@ function VaultForwardAPR({currentVault}: {currentVault: TYDaemonVault}): ReactEl
</div>
</span>
</span>
{/* TEMPORARY CODE TO NOTIFY 1000 ARB PER WEEK REWARD FOR SOME VAULTS */}
{/* TEMPORARY CODE TO NOTIFY 1500 ARB PER WEEK REWARD FOR SOME VAULTS */}
<small
className={cl(
'whitespace-nowrap text-xs text-neutral-800 self-end',
hasPendleArbRewards ? '-mb-4' : ''
)}>
<Renderable shouldRender={hasPendleArbRewards}>{`+ 1000 ARB per week πŸš€`}</Renderable>
<Renderable shouldRender={hasPendleArbRewards}>{`+ 1500 ARB per week πŸš€`}</Renderable>
</small>
</div>
);
Expand All @@ -275,7 +275,7 @@ function VaultForwardAPR({currentVault}: {currentVault: TYDaemonVault}): ReactEl
<b className={'yearn--table-data-section-item-value'}>
<Renderable
shouldRender={!currentVault.apr.forwardAPR?.type.includes('new')}
/* TEMPORARY CODE TO NOTIFY 1000 ARB PER WEEK REWARD FOR SOME VAULTS */
/* TEMPORARY CODE TO NOTIFY 1500 ARB PER WEEK REWARD FOR SOME VAULTS */
fallback={'NEW'}>
{currentVault?.info?.isBoosted ? '⚑️ ' : ''}
<RenderAmount
Expand All @@ -286,13 +286,13 @@ function VaultForwardAPR({currentVault}: {currentVault: TYDaemonVault}): ReactEl
/>
</Renderable>
</b>
{/* TEMPORARY CODE TO NOTIFY 1000 ARB PER WEEK REWARD FOR SOME VAULTS */}
{/* TEMPORARY CODE TO NOTIFY 1500 ARB PER WEEK REWARD FOR SOME VAULTS */}
<small
className={cl(
'whitespace-nowrap text-xs text-neutral-800 self-end',
hasPendleArbRewards ? '-mb-4' : ''
)}>
<Renderable shouldRender={hasPendleArbRewards}>{`+ 1000 ARB per week πŸš€`}</Renderable>
<Renderable shouldRender={hasPendleArbRewards}>{`+ 1500 ARB per week πŸš€`}</Renderable>
</small>
</div>
);
Expand All @@ -306,7 +306,7 @@ function VaultForwardAPR({currentVault}: {currentVault: TYDaemonVault}): ReactEl
shouldRender={
!currentVault.apr.forwardAPR?.type.includes('new') && !currentVault.apr.type.includes('new')
}
/* TEMPORARY CODE TO NOTIFY 1000 ARB PER WEEK REWARD FOR SOME VAULTS */
/* TEMPORARY CODE TO NOTIFY 1500 ARB PER WEEK REWARD FOR SOME VAULTS */
fallback={'NEW'}>
{currentVault?.info?.isBoosted ? '⚑️ ' : ''}
<RenderAmount
Expand All @@ -317,13 +317,13 @@ function VaultForwardAPR({currentVault}: {currentVault: TYDaemonVault}): ReactEl
/>
</Renderable>
</b>
{/* TEMPORARY CODE TO NOTIFY 1000 ARB PER WEEK REWARD FOR SOME VAULTS */}
{/* TEMPORARY CODE TO NOTIFY 1500 ARB PER WEEK REWARD FOR SOME VAULTS */}
<small
className={cl(
'whitespace-nowrap text-xs text-neutral-800 self-end',
hasPendleArbRewards ? '-mb-4' : ''
)}>
<Renderable shouldRender={hasPendleArbRewards}>{`+ 1000 ARB per week πŸš€`}</Renderable>
<Renderable shouldRender={hasPendleArbRewards}>{`+ 1500 ARB per week πŸš€`}</Renderable>
</small>
</div>
);
Expand Down

0 comments on commit 0f4a593

Please sign in to comment.