|
@@ -93,12 +93,9 @@ let state = reactive({
|
|
|
})
|
|
|
|
|
|
const inputWithdrawCalcFee = () => {
|
|
|
- if(!state.input_amount) {
|
|
|
- state.input_amount = 0;
|
|
|
- }
|
|
|
withdrawCalcFee({
|
|
|
params: {
|
|
|
- "amountValue": state.input_amount,
|
|
|
+ "amountValue": state.input_amount || 0,
|
|
|
"currencyCode": withdraw_info.currency_code,
|
|
|
"withdrawNetwork": withdraw_info.token_chain
|
|
|
}
|