diff --git a/src/pages/Earns/PoolExplorer/index.tsx b/src/pages/Earns/PoolExplorer/index.tsx index 434058cd63..5ae5022002 100644 --- a/src/pages/Earns/PoolExplorer/index.tsx +++ b/src/pages/Earns/PoolExplorer/index.tsx @@ -63,7 +63,7 @@ const filterTags = [ label: 'High APR', value: FilterTag.HIGH_APR, icon: , - 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', diff --git a/src/pages/Earns/PositionDetail/LeftSection.tsx b/src/pages/Earns/PositionDetail/LeftSection.tsx index a6717f5a61..4731baa21a 100644 --- a/src/pages/Earns/PositionDetail/LeftSection.tsx +++ b/src/pages/Earns/PositionDetail/LeftSection.tsx @@ -225,7 +225,7 @@ const LeftSection = ({ position }: { position: ParsedPosition }) => { - {t`Total Unclaimed Fee`} + {t`Total Unclaimed Fees`} {feeInfo diff --git a/src/pages/Earns/index.tsx b/src/pages/Earns/index.tsx index fc552d1cb2..f0a0c44d77 100644 --- a/src/pages/Earns/index.tsx +++ b/src/pages/Earns/index.tsx @@ -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 ? ( ) : ( diff --git a/src/state/transactions/type.ts b/src/state/transactions/type.ts index 0e9c9d2a63..8821cb445b 100644 --- a/src/state/transactions/type.ts +++ b/src/state/transactions/type.ts @@ -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',