From 5b78bc4fb24dd2288ce793c7338695861a0b1fd2 Mon Sep 17 00:00:00 2001 From: PhilReact Date: Sun, 6 Apr 2025 08:06:48 +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 eee4c97..3c773a0 100644 --- a/src/qortalRequests/get.ts +++ b/src/qortalRequests/get.ts @@ -2688,7 +2688,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") }