diff --git a/apps/common/components/Counter.tsx b/apps/common/components/Counter.tsx index 4b270a2f..215fedc5 100644 --- a/apps/common/components/Counter.tsx +++ b/apps/common/components/Counter.tsx @@ -27,6 +27,12 @@ export function Counter({ onUpdate(value) { let hasBeenSet = false; valueRef.current = value; + + if (value < 0.00001 && value > 0) { + node.textContent = '<0.00001'; + return; + } + if (Number.isNaN(value) || value === 0) { const formatedValue = formatAmount(0, idealDecimals, idealDecimals); node.textContent = formatedValue; diff --git a/apps/landing/components/sections/About.tsx b/apps/landing/components/sections/About.tsx index 8d5eb90f..ce43f13e 100644 --- a/apps/landing/components/sections/About.tsx +++ b/apps/landing/components/sections/About.tsx @@ -14,12 +14,14 @@ export function About(): ReactElement { }}>
- {'WTF IS YEARN VAULT?'} + {'WTF IS A YEARN VAULT?'}
{
@@ -38,16 +40,16 @@ export function About(): ReactElement {
- {'Unlike a bank account - none of this takes place behind closed doors (no offence to doors).'} + {'Unlike a bank account - none of this takes place behind closed doors (no offence to doors). '} { - 'DeFiruns on public blockchains, so you are in control of your assets and can see where they are' + 'DeFi runs on public blockchains, so you are in control of your assets and can see where they are' } {'at all times.'}