@kimafinance/kima-transaction-widget 1.2.30-beta.1 → 1.2.32-beta.1
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/index.js +1 -7
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1 -7
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8693,7 +8693,7 @@ var TransferWidget = function TransferWidget(_ref) {
|
|
|
8693
8693
|
status: status
|
|
8694
8694
|
});
|
|
8695
8695
|
}
|
|
8696
|
-
dispatch(setPendingTxData(
|
|
8696
|
+
dispatch(setPendingTxData(txData));
|
|
8697
8697
|
dispatch(setPendingTxs(txData.filter(function (tx) {
|
|
8698
8698
|
return tx.status === 'Pending' || tx.status === 'Confirming';
|
|
8699
8699
|
}).length));
|
|
@@ -8703,13 +8703,7 @@ var TransferWidget = function TransferWidget(_ref) {
|
|
|
8703
8703
|
return Promise.reject(e);
|
|
8704
8704
|
}
|
|
8705
8705
|
};
|
|
8706
|
-
var timerId = setInterval(function () {
|
|
8707
|
-
updatePendingTxs();
|
|
8708
|
-
}, 10000);
|
|
8709
8706
|
updatePendingTxs();
|
|
8710
|
-
return function () {
|
|
8711
|
-
clearInterval(timerId);
|
|
8712
|
-
};
|
|
8713
8707
|
}, [sourceChain, nodeProviderQuery, walletAddress]);
|
|
8714
8708
|
return React__default.createElement("div", {
|
|
8715
8709
|
className: "kima-card " + theme.colorMode + " font-" + theme.fontSize,
|