From 460ac85fda133f67436bbe6149aa9fa0a2c23bf9 Mon Sep 17 00:00:00 2001 From: Michael Kret <88898367+michael-radency@users.noreply.github.com> Date: Mon, 13 Nov 2023 13:07:12 +0200 Subject: [PATCH] fix(core): Send pairedItem error to Posthog (no-changelog) (#7697) Github issue / Community forum post (link here to close automatically): --- packages/editor-ui/src/mixins/pushConnection.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/editor-ui/src/mixins/pushConnection.ts b/packages/editor-ui/src/mixins/pushConnection.ts index 2cde57284..4f24187db 100644 --- a/packages/editor-ui/src/mixins/pushConnection.ts +++ b/packages/editor-ui/src/mixins/pushConnection.ts @@ -419,7 +419,9 @@ export const pushConnection = defineComponent({ } } - this.$telemetry.track('Instance FE emitted paired item error', eventData); + this.$telemetry.track('Instance FE emitted paired item error', eventData, { + withPostHog: true, + }); }); }