Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions contexts/WalletContext.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
'use client';

/**
* WalletContext — Stellar wallet connection state.
*
Expand All @@ -17,7 +16,6 @@
* pattern. AbortController integration ensures graceful cancellation of
* in-flight operations when the wallet disconnects.
*/

import React, {
createContext,
useCallback,
Expand Down Expand Up @@ -88,6 +86,7 @@ export class Mutex {
});
}


private _release() {
const next = this._queue.shift();
if (next) {
Expand Down
Loading