From f26c7599f45ba07974e4352bca769dd091dccf54 Mon Sep 17 00:00:00 2001 From: serh11p Date: Fri, 11 Jun 2021 15:24:45 +0300 Subject: [PATCH] Update DAppOpened analytics event --- src/app/templates/DAppsList.tsx | 2 +- src/app/templates/DAppsList/DAppItem.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/templates/DAppsList.tsx b/src/app/templates/DAppsList.tsx index 709a99144..dc919ac8b 100644 --- a/src/app/templates/DAppsList.tsx +++ b/src/app/templates/DAppsList.tsx @@ -124,7 +124,7 @@ const DAppsList: FC = () => { trackEvent( DAppStoreSelectors.DAppOpened, AnalyticsEventCategory.ButtonPress, - { website, name } + { website, name, promoted: true } ); }, [trackEvent] diff --git a/src/app/templates/DAppsList/DAppItem.tsx b/src/app/templates/DAppsList/DAppItem.tsx index a5c31b379..ac1b9d0bb 100644 --- a/src/app/templates/DAppsList/DAppItem.tsx +++ b/src/app/templates/DAppsList/DAppItem.tsx @@ -48,7 +48,7 @@ const DAppItem: FC = ({ trackEvent( DAppStoreSelectors.DAppOpened, AnalyticsEventCategory.ButtonPress, - { website, name } + { website, name, promoted: false } ); }, [trackEvent, website, name]);