@multiversx/sdk-dapp-liquidity 1.1.0-alpha.32 → 1.1.0-alpha.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -688,7 +688,7 @@ const BridgeForm = ({
|
|
|
688
688
|
inputName: "firstAmount",
|
|
689
689
|
inputValue: formik.values.firstAmount ?? "",
|
|
690
690
|
amountError: firstAmount !== "" ? rateValidationError ?? firstAmountError : void 0,
|
|
691
|
-
disabled:
|
|
691
|
+
disabled: isPendingRate,
|
|
692
692
|
onInputDebounceChange: handleOnChangeFirstAmount,
|
|
693
693
|
onInputChange: handleChange,
|
|
694
694
|
onBlur: handleBlur
|
|
@@ -746,7 +746,7 @@ const BridgeForm = ({
|
|
|
746
746
|
inputName: "secondAmount",
|
|
747
747
|
inputValue: formik.values.secondAmount ?? "",
|
|
748
748
|
amountError: secondAmount !== "" ? fromChainError ?? secondAmountError : void 0,
|
|
749
|
-
disabled:
|
|
749
|
+
disabled: false,
|
|
750
750
|
onInputDebounceChange: handleOnChangeSecondAmount,
|
|
751
751
|
onInputChange: handleChange,
|
|
752
752
|
onBlur: handleBlur
|
|
@@ -685,7 +685,7 @@ const BridgeForm = ({
|
|
|
685
685
|
inputName: "firstAmount",
|
|
686
686
|
inputValue: formik.values.firstAmount ?? "",
|
|
687
687
|
amountError: firstAmount !== "" ? rateValidationError ?? firstAmountError : void 0,
|
|
688
|
-
disabled:
|
|
688
|
+
disabled: isPendingRate,
|
|
689
689
|
onInputDebounceChange: handleOnChangeFirstAmount,
|
|
690
690
|
onInputChange: handleChange,
|
|
691
691
|
onBlur: handleBlur
|
|
@@ -743,7 +743,7 @@ const BridgeForm = ({
|
|
|
743
743
|
inputName: "secondAmount",
|
|
744
744
|
inputValue: formik.values.secondAmount ?? "",
|
|
745
745
|
amountError: secondAmount !== "" ? fromChainError ?? secondAmountError : void 0,
|
|
746
|
-
disabled:
|
|
746
|
+
disabled: false,
|
|
747
747
|
onInputDebounceChange: handleOnChangeSecondAmount,
|
|
748
748
|
onInputChange: handleChange,
|
|
749
749
|
onBlur: handleBlur
|