Skip to content

Commit ccd0de5

Browse files
committed
Prettier.
1 parent db5c5e6 commit ccd0de5

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

src/mcp/install-mcp-server.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ export async function prepareMcpConfig(
66
repo: string,
77
branch: string,
88
): Promise<string> {
9-
console.log("Preparing MCP config ",{githubToken: !!githubToken, slackBotToken: !!process.env.SLACK_BOT_TOKEN});
9+
console.log("Preparing MCP config ", {
10+
githubToken: !!githubToken,
11+
slackBotToken: !!process.env.SLACK_BOT_TOKEN,
12+
});
1013

1114
try {
1215
const mcpConfig = {
@@ -46,14 +49,12 @@ export async function prepareMcpConfig(
4649
env: {
4750
SLACK_BOT_TOKEN: process.env.SLACK_BOT_TOKEN,
4851
SLACK_TEAM_ID: process.env.SLACK_TEAM_ID,
49-
SLACK_CHANNEL_IDS:
50-
process.env.SLACK_CHANNEL_IDS || ''
52+
SLACK_CHANNEL_IDS: process.env.SLACK_CHANNEL_IDS || "",
5153
},
5254
},
5355
}
5456
: {}),
5557
},
56-
5758
};
5859

5960
return JSON.stringify(mcpConfig, null, 2);

0 commit comments

Comments
 (0)