diff --git a/components/ExaCard/index.tsx b/components/ExaCard/index.tsx index b433bacf6..9e4f1ec88 100644 --- a/components/ExaCard/index.tsx +++ b/components/ExaCard/index.tsx @@ -88,11 +88,11 @@ export default function EXACard() { - {t('The first onchain debit & credit card.')} + {t('The first onchain credit card.')} - {t('Join the waitlist')} + {t('Download the app.')} diff --git a/components/Leverager/Modal/index.tsx b/components/Leverager/Modal/index.tsx index 72f8f4fbc..dd3c41c80 100644 --- a/components/Leverager/Modal/index.tsx +++ b/components/Leverager/Modal/index.tsx @@ -113,7 +113,7 @@ function LeveragerModal({ isOpen, close }: Props) { ? input.secondaryOperation === 'deposit' ? t('Leverage') : t('Deleverage') - : t('Leverage & Deleverage')} + : t('Deleverage')} {t( diff --git a/components/Leverager/MultiplierSlider/index.tsx b/components/Leverager/MultiplierSlider/index.tsx index 55c7f2254..fc4b97f0d 100644 --- a/components/Leverager/MultiplierSlider/index.tsx +++ b/components/Leverager/MultiplierSlider/index.tsx @@ -10,7 +10,6 @@ const MultiplierSlider = () => { setLeverageRatio, currentLeverageRatio, minLeverageRatio, - maxLeverageRatio, newHealthFactor, getHealthFactorColor, netPosition, @@ -33,10 +32,7 @@ const MultiplierSlider = () => { [blockModal, input.borrowSymbol, input.collateralSymbol, netPosition], ); - const max = useMemo( - () => Math.floor(Math.max(currentLeverageRatio, maxLeverageRatio) * 1e10) / 1e10, - [currentLeverageRatio, maxLeverageRatio], - ); + const max = currentLeverageRatio; return ( diff --git a/components/Leverager/Operation/index.tsx b/components/Leverager/Operation/index.tsx index 63cdd3c5d..b955d89c4 100644 --- a/components/Leverager/Operation/index.tsx +++ b/components/Leverager/Operation/index.tsx @@ -91,7 +91,7 @@ const Operation = () => { )} {disabledSubmit ? ( ) : ( ), source: 'exactly' as const, @@ -361,7 +361,7 @@ const Strategies: NextPage = () => { }); }} > - {t('Leverage')} + {t('Deleverage')} ), },