fix send_coin return for qort

This commit is contained in:
PhilReact 2025-04-06 08:07:07 +03:00
parent 9d890cdcd5
commit 15f6acfda1

View File

@ -3088,7 +3088,7 @@ export const sendCoin = async (data, isFromExtension) => {
{ amount, password: null, receiver: recipient }, { amount, password: null, receiver: recipient },
true true
); );
return makePayment.res; return makePayment.res?.data;
} else { } else {
throw new Error("User declined request"); throw new Error("User declined request");
} }