fix: Disconnecting should clear oauth state

This commit is contained in:
Maxwell Gerber
2025-04-07 15:15:28 -07:00
parent 4053aa122d
commit 6a16e7cd24
2 changed files with 7 additions and 0 deletions

View File

@@ -361,6 +361,7 @@ export function useConnection({
const disconnect = async () => {
await mcpClient?.close();
authProvider.clear();
setMcpClient(null);
setConnectionStatus("disconnected");
setCompletionsSupported(false);