@rash2x/bridge-widget 0.1.30 → 0.1.31
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/dist/evaa-bridge.cjs
CHANGED
|
@@ -3704,16 +3704,16 @@ const SubmitButton = () => {
|
|
|
3704
3704
|
}
|
|
3705
3705
|
};
|
|
3706
3706
|
const disabled = isBusy || amountNum <= 0 || status === "loading" || isBalanceLoading || hasInsufficientBalance || hasAmountTooLarge || !gas.hasEnoughGas || noRoute || !isValidForTransfer;
|
|
3707
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3707
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-4", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3708
3708
|
button.Button,
|
|
3709
3709
|
{
|
|
3710
3710
|
onClick: handleClick,
|
|
3711
3711
|
disabled,
|
|
3712
3712
|
size: "lg",
|
|
3713
|
-
className: "w-full
|
|
3713
|
+
className: "w-full",
|
|
3714
3714
|
children: label
|
|
3715
3715
|
}
|
|
3716
|
-
);
|
|
3716
|
+
) });
|
|
3717
3717
|
};
|
|
3718
3718
|
function short(addr) {
|
|
3719
3719
|
return addr.slice(0, 4) + "…" + addr.slice(-4);
|