We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b538138 commit 3de627cCopy full SHA for 3de627c
src/mcp/tools/core/logout.ts
@@ -1,5 +1,4 @@
1
import { z } from "zod";
2
-import * as clc from "colorette";
3
import { tool } from "../../tool";
4
import { toContent } from "../../util";
5
import {
@@ -60,7 +59,7 @@ export const logout = tool(
60
59
if (token) {
61
try {
62
await authLogout(token);
63
- logoutMessages.push(`Logged out from ${clc.bold(account.user.email)}`);
+ logoutMessages.push(`Logged out from ${account.user.email}`);
64
} catch (e: unknown) {
65
if (e instanceof Error) {
66
logger.debug(e.message);
0 commit comments