Skip to content

Commit

Permalink
Remove DCR since PR linode#9004 exists
Browse files Browse the repository at this point in the history
  • Loading branch information
mjac0bs committed Apr 18, 2023
1 parent f375617 commit 1b9c591
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions packages/manager/src/utilities/ga.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,6 @@ interface AnalyticsEvent {
* Will throw error unless analytics is initialized
*/
export const sendEvent = (eventPayload: AnalyticsEvent): void => {
// Send a Direct Call Rule to Adobe
// TODO: uncomment in forthcoming PR once basic tracking is verified
// (window as any)._satellite.track('custom event', {
// category: eventPayload.category,
// action: eventPayload.action,
// label: eventPayload.label,
// value: eventPayload.value,
// });

/** only send events if we have a GA ID */
return !!GA_ID ? event(eventPayload) : undefined;
};
Expand Down

0 comments on commit 1b9c591

Please sign in to comment.