feat(www): add signout clause

This commit is contained in:
dvelo 2025-03-12 22:21:24 -05:00
parent b50040dfa5
commit 9a82bf5f17

@ -82,6 +82,9 @@ function PostHogPageView() {
username: user.username, username: user.username,
}) })
} }
if (!isSignedIn && posthog._isIdentified()) {
posthog.reset()
}
}, [posthog, user]) }, [posthog, user])
return null; return null;