There was an error while loading. Please reload this page.
1 parent 315f2c0 commit 83b1230Copy full SHA for 83b1230
1 file changed
src/mcp/client.ts
@@ -324,15 +324,12 @@ function getOrStartRecovery(
324
delete coordinator.refreshInFlight;
325
delete coordinator.browserFlow;
326
};
327
- void shared.then(
328
- () => {
329
- clear();
330
- if ((coordinator.waiters ?? 0) === 0) {
331
- completeVerifiedRecovery(context, coordinator.recoveryGeneration ?? 0);
332
- }
333
- },
334
- clear,
335
- );
+ void shared.then(() => {
+ clear();
+ if ((coordinator.waiters ?? 0) === 0) {
+ completeVerifiedRecovery(context, coordinator.recoveryGeneration ?? 0);
+ }
+ }, clear);
336
return shared;
337
}
338
0 commit comments