From 786c16cc6f9c96ee9362b97f36ac895478b26833 Mon Sep 17 00:00:00 2001 From: Faisal Amir Date: Wed, 20 Nov 2024 23:40:52 +0700 Subject: [PATCH] chore: profilce always identified --- web/app/posthog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/posthog.js b/web/app/posthog.js index daa2a7ea2..2ed24dbd0 100644 --- a/web/app/posthog.js +++ b/web/app/posthog.js @@ -6,7 +6,7 @@ import { PostHogProvider } from 'posthog-js/react' if (typeof window !== 'undefined') { posthog.init(process.env.NEXT_PUBLIC_POSTHOG_KEY, { api_host: process.env.NEXT_PUBLIC_POSTHOG_HOST, - person_profiles: 'identified_only', // or 'always' to create profiles for anonymous users as well + person_profiles: 'always', persistence: 'localStorage', }) }