Nick: revert trailing comma

This commit is contained in:
Nicolas
2024-12-11 19:51:08 -03:00
parent 52f2e733e2
commit 8a1c404918
121 changed files with 1965 additions and 1952 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ export default function PostHogClient(apiKey: string) {
const posthogClient = new PostHog(apiKey, {
host: process.env.POSTHOG_HOST,
flushAt: 1,
flushInterval: 0
flushInterval: 0,
});
return posthogClient;
}
@@ -21,7 +21,7 @@ export const posthog = process.env.POSTHOG_API_KEY
? PostHogClient(process.env.POSTHOG_API_KEY)
: (() => {
logger.warn(
"POSTHOG_API_KEY is not provided - your events will not be logged. Using MockPostHog as a fallback. See posthog.ts for more."
"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();
})();