Update SelectFeeModal.tsx

This commit is contained in:
Marcos Rodriguez Vélez 2024-08-23 23:24:39 -04:00 committed by GitHub
parent b18f593a6b
commit 86f76fd4b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -148,8 +148,8 @@ const SelectFeeModal = forwardRef<BottomModalHandle, SelectFeeModalProps>(
}
const fee = Number(customFee) < 1 ? '1' : customFee;
setCustomFee(fee);
await customModalRef.current?.dismiss();
await feeModalRef.current?.dismiss();
await customModalRef.current?.dismiss();
};
const handleCancel = async () => {