Skip to content

Commit 0e7b9d4

Browse files
authored
fix(auth): forgetConnection emits old value for onDidDeleteConnection
1 parent fd0c891 commit 0e7b9d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/auth/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ export class Auth implements AuthService, ConnectionManager {
353353
await this.clearStaleLinkedIamConnections()
354354
}
355355
}
356-
this.#onDidDeleteConnection.fire(connId)
356+
this.#onDidDeleteConnection.fire({ connId, storedProfile: profile })
357357
}
358358

359359
private async clearStaleLinkedIamConnections() {

0 commit comments

Comments
 (0)