refactor: Remove any appcues events (#8597)
This commit is contained in:
@@ -99,7 +99,7 @@ export class Telemetry {
|
||||
track(
|
||||
event: string,
|
||||
properties?: ITelemetryTrackProperties,
|
||||
options: { withPostHog?: boolean; withAppCues?: boolean } = {},
|
||||
options: { withPostHog?: boolean } = {},
|
||||
) {
|
||||
if (!this.rudderStack) return;
|
||||
|
||||
@@ -113,10 +113,6 @@ export class Telemetry {
|
||||
if (options.withPostHog) {
|
||||
usePostHog().capture(event, updatedProperties);
|
||||
}
|
||||
|
||||
if (options.withAppCues && window.Appcues) {
|
||||
window.Appcues.track(event, updatedProperties);
|
||||
}
|
||||
}
|
||||
|
||||
page(route: Route) {
|
||||
|
||||
Reference in New Issue
Block a user