@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
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "homepage": "https://github.com/multiversx/mx-sdk-dapp-liquidity#readme",
30
30
  "license": "MIT",
31
- "version": "1.1.0-alpha.32",
31
+ "version": "1.1.0-alpha.33",
32
32
  "main": "index.js",
33
33
  "module": "index.mjs",
34
34
  "types": "index.d.ts",
@@ -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: true,
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: isPendingRate,
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: true,
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: isPendingRate,
746
+ disabled: false,
747
747
  onInputDebounceChange: handleOnChangeSecondAmount,
748
748
  onInputChange: handleChange,
749
749
  onBlur: handleBlur