@txnlab/use-wallet 2.8.1 → 2.8.2
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/package.json +3 -3
package/dist/cjs/index.js
CHANGED
|
@@ -2415,7 +2415,7 @@ class LuteClient extends BaseClient {
|
|
|
2415
2415
|
const result = await this.#client.signTxns(txnsToSign);
|
|
2416
2416
|
const signedTxns = transactions.reduce((acc, txn, i) => {
|
|
2417
2417
|
if (signedIndexes.includes(i)) {
|
|
2418
|
-
const signedByUser = result
|
|
2418
|
+
const signedByUser = result[i];
|
|
2419
2419
|
signedByUser && acc.push(signedByUser);
|
|
2420
2420
|
}
|
|
2421
2421
|
else if (returnGroup) {
|