Remove IP and geoip_disable parameters from PostHog registration and session capture

This commit is contained in:
Nayam Amarshe
2024-12-25 18:19:15 +05:30
parent 15916ea899
commit 2e05cfb497

View File

@@ -27,15 +27,11 @@ const PostHogProviderWrapper = ({
posthog.register({
...systemInfo,
appVersion,
$ip: "0.0.0.0",
$geoip_disable: true,
});
// Capture initial session start
posthog.capture("app_launched", {
...systemInfo,
appVersion,
$ip: "0.0.0.0",
$geoip_disable: true,
});
},
});