Skip to content

Commit

Permalink
fixed api host
Browse files Browse the repository at this point in the history
  • Loading branch information
mirai2k committed Nov 21, 2024
1 parent 782c3d9 commit c58770a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/telemetry/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@codemod-com/telemetry",
"author": "Codemod, Inc.",
"version": "1.1.0",
"version": "1.2.0",
"description": "Telemetry for CLI and VSCE",
"type": "module",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/telemetry/src/sender/PostHogSender.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class PostHogSender<Event extends BaseEvent>
constructor(private readonly __options: TelemetrySenderOptions) {
this.__telemetryClient = new PostHog(
"phc_nGWKWP3t1fcNFqGi6UdstXjMf0fxx7SBeohHPSS6d2Y",
{ host: "https://app.posthog.com" },
{ host: "https://us.i.posthog.com" },
);
}
public dispose(): Promise<unknown> {
Expand Down

0 comments on commit c58770a

Please sign in to comment.