Skip to content

Commit

Permalink
fix url reassignament in CTA click event
Browse files Browse the repository at this point in the history
  • Loading branch information
ail3ngrimaldi committed Sep 5, 2024
1 parent ae51c4e commit 49728c7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion landings/a/index.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ window.document.onload = () => {
let w = window.open('_blank');
w.location = url;
window.amplitude.track(`landing:a:click-apply`);
let url = `https://waitlist.virto.network/?b=${searchParams.get('b')}`;
url = `https://waitlist.virto.network/?b=${searchParams.get('b')}`;
});
});
Expand Down
2 changes: 1 addition & 1 deletion landings/b/index.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ window.document.onload = () => {
let w = window.open('_blank');
w.location = url;
window.amplitude.track(`landing:b:click-apply`);
let url = `https://waitlist.virto.network/?b=${searchParams.get('b')}`;
url = `https://waitlist.virto.network/?b=${searchParams.get('b')}`;
});
});
Expand Down
2 changes: 1 addition & 1 deletion landings/c/index.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ window.document.onload = () => {
let w = window.open('_blank');
w.location = url;
window.amplitude.track(`landing:c:click-apply`);
let url = `https://waitlist.virto.network/?b=${searchParams.get('b')}`;
url = `https://waitlist.virto.network/?b=${searchParams.get('b')}`;
});
});
Expand Down

0 comments on commit 49728c7

Please sign in to comment.