File size: 397 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import posthog from "posthog-js";

/**

 * Handle user consent for tracking

 * @param consent Whether the user consents to tracking

 */
export const handleCaptureConsent = (consent: boolean) => {
  if (consent && !posthog.has_opted_in_capturing()) {
    posthog.opt_in_capturing();
  }

  if (!consent && !posthog.has_opted_out_capturing()) {
    posthog.opt_out_capturing();
  }
};