Skip to content

Commit 906c385

Browse files
committed
Correct PostHog Config
1 parent a3210b9 commit 906c385

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/app/_providers/posthog-provider.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ import { env } from "~/env";
1111
export function PostHogProvider({ children }: { children: React.ReactNode }) {
1212
useEffect(() => {
1313
posthog.init(env.NEXT_PUBLIC_POSTHOG_KEY, {
14-
api_host: "/relay-BxMI",
15-
ui_host: env.NEXT_PUBLIC_POSTHOG_HOST,
14+
api_host: env.NEXT_PUBLIC_POSTHOG_HOST,
1615
person_profiles: "identified_only", // or 'always' to create profiles for anonymous users as well
1716
defaults: "2025-05-24",
1817
});

0 commit comments

Comments
 (0)