Skip to content

Commit 3de627c

Browse files
authored
Removing unnecessary bolding to avoid test failures in some environments (#9221)
1 parent b538138 commit 3de627c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/mcp/tools/core/logout.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { z } from "zod";
2-
import * as clc from "colorette";
32
import { tool } from "../../tool";
43
import { toContent } from "../../util";
54
import {
@@ -60,7 +59,7 @@ export const logout = tool(
6059
if (token) {
6160
try {
6261
await authLogout(token);
63-
logoutMessages.push(`Logged out from ${clc.bold(account.user.email)}`);
62+
logoutMessages.push(`Logged out from ${account.user.email}`);
6463
} catch (e: unknown) {
6564
if (e instanceof Error) {
6665
logger.debug(e.message);

0 commit comments

Comments
 (0)