diff --git a/src/app/containers/LendBorrowSovryn/components/Amount/index.tsx b/src/app/containers/LendBorrowSovryn/components/Amount/index.tsx index d3eb24d5d..964665250 100644 --- a/src/app/containers/LendBorrowSovryn/components/Amount/index.tsx +++ b/src/app/containers/LendBorrowSovryn/components/Amount/index.tsx @@ -2,6 +2,7 @@ import React from 'react'; import '../../assets/index.scss'; import { FieldGroup } from '../../../../components/FieldGroup'; import { AmountField } from '../../../AmountField'; +import { weiTo4 } from '../../../../../utils/blockchain/math-helpers'; type Props = { amountName: string; @@ -39,7 +40,7 @@ const Amount: React.FC = ({
Max:
{currency}{' '} - {maxValue} + {weiTo4(maxValue)}
)}