mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): Check for PostHog before feature flag call (#3928)
* 🐛 Check for PH before feature flag call * 🔥 Remove logging
This commit is contained in:
@@ -2051,7 +2051,7 @@ export default mixins(
|
||||
|
||||
this.setZoomLevel(1);
|
||||
|
||||
if (window.featureFlag && !window.featureFlag.isEnabled('show-welcome-note')) return;
|
||||
if (window.posthog && !window.featureFlag.isEnabled('show-welcome-note')) return;
|
||||
|
||||
setTimeout(() => {
|
||||
this.$store.commit('setNodeViewOffsetPosition', {newOffset: [0, 0]});
|
||||
|
||||
Reference in New Issue
Block a user