Nick: fixed prettier

This commit is contained in:
Nicolas
2024-12-11 19:46:11 -03:00
parent e5fe9e1534
commit 00335e2ba9
134 changed files with 9565 additions and 7108 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
import { PostHog } from 'posthog-node';
import { PostHog } from "posthog-node";
import "dotenv/config";
import { logger } from '../../src/lib/logger';
import { logger } from "../../src/lib/logger";
export default function PostHogClient(apiKey: string) {
const posthogClient = new PostHog(apiKey, {
@@ -24,4 +24,4 @@ export const posthog = process.env.POSTHOG_API_KEY
"POSTHOG_API_KEY is not provided - your events will not be logged. Using MockPostHog as a fallback. See posthog.ts for more."
);
return new MockPostHog();
})();
})();