From ad404d1640cd106e2607a6056a6f9a80b4c3e898 Mon Sep 17 00:00:00 2001 From: Ole Date: Thu, 27 Jul 2023 13:48:00 +0200 Subject: [PATCH] fix: Add home screen Shows rail header tracking (#9066) --- src/app/Scenes/Home/Components/ShowsRail.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/app/Scenes/Home/Components/ShowsRail.tsx b/src/app/Scenes/Home/Components/ShowsRail.tsx index e35015cb36d..45c6847f301 100644 --- a/src/app/Scenes/Home/Components/ShowsRail.tsx +++ b/src/app/Scenes/Home/Components/ShowsRail.tsx @@ -101,6 +101,13 @@ const showsFragment = graphql` ` export const tracks = { + tappedHeader: () => ({ + action: ActionType.tappedArtworkGroup, + context_module: ContextModule.showsRail, + context_screen_owner_type: OwnerType.home, + destination_screen_owner_type: OwnerType.show, + type: "header", + }), tappedThumbnail: (showID?: string, showSlug?: string, index?: number): TappedShowGroup => ({ action: ActionType.tappedShowGroup, context_module: ContextModule.showsRail,