You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello everyone, I encountered such a problem: mixpanel.identify(); works even when shouldEnableMixpanel = false. What could be the problem?
importmixpanelfrom"mixpanel-browser";classMixpanelTracker{constructor(shouldEnableMixpanel=false){this.shouldEnableMixpanel=shouldEnableMixpanel&&!window.location.host.includes('localhost');}initialize(){if(this.shouldEnableMixpanel){mixpanel.init(MIXPANEL_API_TOKEN,{track_pageview: false});mixpanel.identify();}else{console.log(`Mixpanel identifying is disabled or in localhost.`);}}logEvent(eventName,eventParams){if(this.shouldEnableMixpanel){try{mixpanel.track(eventName,eventParams);}catch(error){console.error(error);}}else{console.log(`Mixpanel tracking is disabled or in localhost.`);}}logUserProperty(property,value){if(this.shouldEnableMixpanel){try{mixpanel.people.set({[property]: value});}catch(error){console.error(error);}}else{console.log(`Mixpanel tracking is disabled or in localhost.`);}}}exportdefaultMixpanelTracker;
The text was updated successfully, but these errors were encountered:
mixpanel.identify() is not bound by the class you've written. Hence, to enforce that restriction you need a method in this class that will be called whenever you want to identify. And that will enforce your restriction.
Hello everyone, I encountered such a problem: mixpanel.identify(); works even when shouldEnableMixpanel = false. What could be the problem?
The text was updated successfully, but these errors were encountered: