Skip to content

Commit

Permalink
Merge pull request #1911 from newrelic/fixup_straggler_tessen_events
Browse files Browse the repository at this point in the history
chore: updating remaining tessen events that were forgotten
  • Loading branch information
moonlight-komorebi authored Nov 23, 2021
2 parents 42e35c5 + f652357 commit 291fdf4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion src/experiments/super_tiles/components/CodeStreamTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ const CodeStreamTile = () => {
'/instant-observability/codestream/29bd9a4a-1c19-4219-9694-0942f6411ce7/';

const handleButtonClick = () => {
tessen.track('clickSuperTile', 'QuickstartLanding', { tile: 'codestream' });
tessen.track({
eventName: 'clickSuperTile',
category: 'QuickstartLanding',
tile: 'codestream',
});
};

return (
Expand Down
4 changes: 2 additions & 2 deletions src/experiments/super_tiles/components/GuidedInstallTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const GuidedInstallTile = () => {
const handleButtonClick = useInstrumentedHandler(
() => navigate(isReturningUser ? LOGIN_LINK : SIGNUP_LINK),
{
tessenEventName: 'clickSuperTile',
tessenCategoryName: 'QuickstartLanding',
eventName: 'clickSuperTile',
category: 'QuickstartLanding',
tile: 'guided',
},
'tessen'
Expand Down

0 comments on commit 291fdf4

Please sign in to comment.