remove disable on next btn to allow user to see simulated withdraw
This commit is contained in:
parent
f38402bd3b
commit
a3fc5b2a57
|
@ -417,9 +417,7 @@ const WithdrawModal: FunctionComponent<WithdrawModalProps> = ({
|
|||
<div className={`flex justify-center pt-6`}>
|
||||
<Button
|
||||
onClick={() => setShowSimulation(true)}
|
||||
disabled={
|
||||
Number(inputAmount) <= 0 || simulation?.initHealthRatio < 0
|
||||
}
|
||||
disabled={Number(inputAmount) <= 0}
|
||||
className="w-full"
|
||||
>
|
||||
{t('next')}
|
||||
|
|
Loading…
Reference in New Issue