tek-wallet 0.0.314 → 0.0.315
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.
|
@@ -194,7 +194,6 @@ var WithdrawFunction = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
194
194
|
}
|
|
195
195
|
else {
|
|
196
196
|
setSelectedToken(tokenSet);
|
|
197
|
-
setSelectedNetwork(tokenSet === null || tokenSet === void 0 ? void 0 : tokenSet.network_data);
|
|
198
197
|
gotoStep(WithdrawStep.CONFIRM);
|
|
199
198
|
}
|
|
200
199
|
setSelectedMethod(SendMethods.TRANSFER_INTERNAL);
|
|
@@ -205,6 +204,7 @@ var WithdrawFunction = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
205
204
|
var _a;
|
|
206
205
|
(_a = suggestUseTransferInternalDialogRef.current) === null || _a === void 0 ? void 0 : _a.close();
|
|
207
206
|
var tokenSet = findWithdrawToken((sendInfoGet === null || sendInfoGet === void 0 ? void 0 : sendInfoGet.jetton) || "");
|
|
207
|
+
console.warn("🚀 ~ handleSelectContinueTransferExternal ~ tokenSet:", tokenSet);
|
|
208
208
|
if (!tokenSet) {
|
|
209
209
|
gotoStep(WithdrawStep.SELECT_TOKEN);
|
|
210
210
|
}
|
|
@@ -215,7 +215,7 @@ var WithdrawFunction = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
215
215
|
}
|
|
216
216
|
setSelectedMethod(SendMethods.TRANSFER_EXTERNAL);
|
|
217
217
|
setRecipientAddress(sendInfoGet === null || sendInfoGet === void 0 ? void 0 : sendInfoGet.address);
|
|
218
|
-
setAmount(
|
|
218
|
+
setAmount("12");
|
|
219
219
|
setMemo(sendInfoGet === null || sendInfoGet === void 0 ? void 0 : sendInfoGet.text);
|
|
220
220
|
};
|
|
221
221
|
var handleSelectMethod = function (method) {
|