fix: disable posthog events

This commit is contained in:
sriram veeraghanta
2024-06-26 14:28:15 +05:30
parent 4e97fcd776
commit 9e97aa20c2

View File

@@ -55,6 +55,7 @@ const PostHogProvider: FC<IPosthogWrapper> = observer((props) => {
autocapture: false,
capture_pageview: false, // Disable automatic pageview capture, as we capture manually
capture_pageleave: true,
disable_session_recording: true,
});
}
}, []);