Skip to content

Commit

Permalink
fix(analytics): passing all events to EVENT
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroapfilho committed Jun 8, 2021
1 parent df5b840 commit 867e51e
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -135,7 +135,7 @@ const analyticsMiddleware = () => (store) => (next) => (action) => {
}
case 'REQUEST_CRYPTO_MODAL': {
analytics.push(AnalyticsKey.SEND_RECEIVE_CLICKED, {
analyticsType: AnalyticsType.VIEW,
analyticsType: AnalyticsType.EVENT,
id,
nabuId,
origin: 'NAVIGATION',
Expand All @@ -144,7 +144,7 @@ const analyticsMiddleware = () => (store) => (next) => (action) => {
})

analytics.push(AnalyticsKey.SEND_RECEIVE_VIEWED, {
analyticsType: AnalyticsType.VIEW,
analyticsType: AnalyticsType.EVENT,
id,
nabuId,
originalTimestamp: getOriginalTimestamp(),
Expand Down

0 comments on commit 867e51e

Please sign in to comment.