From 24f133acf53b666f17512afe33b599bb80950adb Mon Sep 17 00:00:00 2001 From: PhilReact Date: Sun, 6 Apr 2025 08:06:57 +0300 Subject: [PATCH] fix send_coin return for qort --- src/qortalRequests/get.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qortalRequests/get.ts b/src/qortalRequests/get.ts index 4fc1de7..016b7cf 100644 --- a/src/qortalRequests/get.ts +++ b/src/qortalRequests/get.ts @@ -2740,7 +2740,7 @@ export const sendCoin = async (data, isFromExtension) => { if (accepted) { const makePayment = await sendCoinFunc({amount, password: null, receiver: recipient }, true) - return makePayment.res + return makePayment.res?.data } else { throw new Error("User declined request") }