Getting rid of unused function, and using track prefix
This commit is contained in:
parent
21ae0c46e1
commit
31ffa65f59
@ -132,7 +132,7 @@ export class ZeroExInstantProvider extends React.Component<ZeroExInstantProvider
|
||||
gitSha: process.env.GIT_SHA,
|
||||
npmVersion: process.env.NPM_PACKAGE_VERSION,
|
||||
});
|
||||
analytics.widgetOpened();
|
||||
analytics.trackWidgetOpened();
|
||||
}
|
||||
public componentWillUnmount(): void {
|
||||
if (this._accountUpdateHeartbeat) {
|
||||
|
@ -24,7 +24,7 @@ export const analyticsMiddleware: Middleware = store => next => middlewareAction
|
||||
if (curAccount.state === AccountState.Ready && prevAccount.state !== AccountState.Ready) {
|
||||
const ethAddress = curAccount.address;
|
||||
analytics.addUserProperties({ ethAddress });
|
||||
analytics.walletReady();
|
||||
analytics.trackWalletReady();
|
||||
}
|
||||
break;
|
||||
case ActionTypes.UPDATE_ACCOUNT_ETH_BALANCE:
|
||||
|
@ -3,7 +3,6 @@ import { ObjectMap } from '@0x/types';
|
||||
import { heapUtil } from './heap';
|
||||
|
||||
enum EventNames {
|
||||
WALLET_OPENED = 'Wallet - Opened',
|
||||
WALLET_READY = 'Wallet - Ready',
|
||||
WIDGET_OPENED = 'Widget - Opened',
|
||||
}
|
||||
@ -43,7 +42,6 @@ export const analytics = {
|
||||
addEventProperties: (properties: AnalyticsEventOptions): void => {
|
||||
heapUtil.evaluateHeapCall(heap => heap.addEventProperties(properties));
|
||||
},
|
||||
walletOpened: trackingEventFnWithoutPayload(EventNames.WALLET_OPENED),
|
||||
walletReady: trackingEventFnWithoutPayload(EventNames.WALLET_READY),
|
||||
widgetOpened: trackingEventFnWithoutPayload(EventNames.WIDGET_OPENED),
|
||||
trackWalletReady: trackingEventFnWithoutPayload(EventNames.WALLET_READY),
|
||||
trackWidgetOpened: trackingEventFnWithoutPayload(EventNames.WIDGET_OPENED),
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user