Skip to content

Commit

Permalink
fix name of events
Browse files Browse the repository at this point in the history
  • Loading branch information
TalBenAvi committed Mar 4, 2024
1 parent f37548d commit 040f93f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const ProvisionsPopup = () => {
);

const gtmEvent = (event: string) => window?.dataLayer.push({ event });
const gtmEventClickReadMore = () => gtmEvent("Provisions popup click");
const gtmEventClickClose = () => gtmEvent("Provisions popup close");
const gtmEventClickReadMore = () => gtmEvent("Provisions_popup_click");
const gtmEventClickClose = () => gtmEvent("Provisions_popup_close");

const onClose = (event: React.MouseEvent) => {
event.stopPropagation();
Expand Down

0 comments on commit 040f93f

Please sign in to comment.