Skip to content

Commit

Permalink
fix: fix fee to fees and APY to APR
Browse files Browse the repository at this point in the history
  • Loading branch information
tienkane committed Jan 21, 2025
1 parent 06fc291 commit 45efae4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/Earns/PoolExplorer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const filterTags = [
label: 'High APR',
value: FilterTag.HIGH_APR,
icon: <IconHighAprPool width={20} color="#31CB9E" />,
tooltip: 'Top 100 Pools with assets that offer exceptionally high APYs',
tooltip: 'Top 100 Pools with assets that offer exceptionally high APRs',
},
{
label: 'Solid Earning',
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Earns/PositionDetail/LeftSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ const LeftSection = ({ position }: { position: ParsedPosition }) => {
<InfoSection>
<Flex alignItems={'center'} justifyContent={'space-between'} marginBottom={2}>
<Text fontSize={14} color={theme.subText} marginTop={1}>
{t`Total Unclaimed Fee`}
{t`Total Unclaimed Fees`}
</Text>
<Text fontSize={18}>
{feeInfo
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Earns/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ export default function Earns() {
})
}}
>
{title('High APR', 'Top 100 Pools with assets that offer exceptionally high APYs', RocketIcon)}
{title('High APR', 'Top 100 Pools with assets that offer exceptionally high APRs', RocketIcon)}
{isLoading ? (
<LocalLoader />
) : (
Expand Down
2 changes: 1 addition & 1 deletion src/state/transactions/type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export enum TRANSACTION_TYPE {
ELASTIC_REMOVE_LIQUIDITY = 'Elastic Remove Liquidity',
ELASTIC_INCREASE_LIQUIDITY = 'Elastic Increase Liquidity',
ELASTIC_ZAP_IN_LIQUIDITY = 'Elastic Zap-in Liquidity',
COLLECT_FEE = 'Collected Fee',
COLLECT_FEE = 'Collected Fees',

STAKE = 'Stake Into Farm',
UNSTAKE = 'Unstake From Farm',
Expand Down

0 comments on commit 45efae4

Please sign in to comment.