Skip to content

Commit e12e694

Browse files
committed
chore: remove testing defaults
1 parent 9122a5c commit e12e694

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mcp.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const runMCPInstall = async (options: {
1919

2020
const cloudRegion = options.region ?? (await askForCloudRegion());
2121

22-
const { personalApiKey = 'helloworld' } = await getOrAskForProjectData({
22+
const { personalApiKey } = await getOrAskForProjectData({
2323
signup: options.signup,
2424
cloudRegion,
2525
});
@@ -28,7 +28,7 @@ export const runMCPInstall = async (options: {
2828
await abort('Unable to create a personal API key.');
2929
}
3030

31-
await addMCPServerToClientsStep(personalApiKey, {});
31+
await addMCPServerToClientsStep(personalApiKey as string, {});
3232

3333
clack.outro(`PostHog MCP server added successfully.
3434

0 commit comments

Comments
 (0)