Skip to content

Commit

Permalink
Add event value
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranahmedse committed Oct 25, 2024
1 parent 171f143 commit 03a974a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/PageSponsor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,13 @@ export function PageSponsor(props: PageSponsorProps) {
rel="noopener sponsored nofollow"
className="fixed bottom-0 left-0 right-0 z-50 flex bg-white shadow-lg outline-0 outline-transparent sm:bottom-[15px] sm:left-auto sm:right-[15px] sm:max-w-[350px]"
onClick={async () => {
const labelValue = gaLabel || `${gaPageIdentifier} / ${company} Link`;

window.fireEvent({
category: 'SponsorClick',
action: `${company} Redirect`,
label: gaLabel || `${gaPageIdentifier} / ${company} Link`,
label: labelValue,
value: labelValue,
});
await clickSponsor(sponsorId || '');
}}
Expand Down

0 comments on commit 03a974a

Please sign in to comment.