Skip to content
Prev Previous commit
Next Next commit
remove unneccessary ip property removal since we disable ip collectio…
…n on posthog side
  • Loading branch information
msukkari committed Sep 19, 2024
commit ba9d5a6b7edf61252f758c3ef3745feab642df23
6 changes: 1 addition & 5 deletions src/app/posthogProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,9 @@ if (typeof window !== 'undefined') {
if (properties['$current_url']) {
properties['$current_url'] = null;
}
if (properties['$ip']) {
properties['$ip'] = "null";
}


return properties;
}
}
});
} else {
console.log("PostHog telemetry disabled");
Expand Down