diff options
| author | Kush Thaker <[email protected]> | 2024-08-09 18:50:05 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-08-09 18:50:05 +0530 |
| commit | ed5ed419e184c56f7f09deb3eb733a8bbc1dc6c3 (patch) | |
| tree | ee3e74b4e2b9ceb806625622b64e224c63b0c388 /apps/web/app/providers.tsx | |
| parent | remove unwanted console logs (diff) | |
| parent | Merge pull request #236 from CodeTorso/queue (diff) | |
| download | supermemory-kush/be-queue-fixes.tar.xz supermemory-kush/be-queue-fixes.zip | |
Merge branch 'main' into kush/be-queue-fixeskush/be-queue-fixes
Diffstat (limited to 'apps/web/app/providers.tsx')
| -rw-r--r-- | apps/web/app/providers.tsx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/web/app/providers.tsx b/apps/web/app/providers.tsx index f1f1237b..13e41647 100644 --- a/apps/web/app/providers.tsx +++ b/apps/web/app/providers.tsx @@ -4,12 +4,6 @@ import posthog from "posthog-js"; import { PostHogProvider } from "posthog-js/react"; if (typeof window !== "undefined") { - if ( - !process.env.NEXT_PUBLIC_POSTHOG_KEY || - !process.env.NEXT_PUBLIC_POSTHOG_HOST - ) { - console.error("PostHog key or host not found"); - } posthog.init(process.env.NEXT_PUBLIC_POSTHOG_KEY!, { api_host: process.env.NEXT_PUBLIC_POSTHOG_HOST, person_profiles: "identified_only", |