Skip to content

Commit 71daae2

Browse files
committed
default login to false
1 parent 467c243 commit 71daae2

File tree

1 file changed

+1
-1
lines changed
  • src/mcp_agent/cli/cloud/commands/auth/logout

1 file changed

+1
-1
lines changed

src/mcp_agent/cli/cloud/commands/auth/logout/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def logout() -> None:
2525
user_info = f"user '{credentials.email}'"
2626

2727
# Confirm logout action
28-
if not Confirm.ask(f"Are you sure you want to logout {user_info}?"):
28+
if not Confirm.ask(f"Are you sure you want to logout {user_info}?", default=False):
2929
print_info("Logout cancelled.")
3030
return
3131

0 commit comments

Comments
 (0)