From 7cdc4d165ab3a59be8698f3700280e009c32ef01 Mon Sep 17 00:00:00 2001 From: abrunner Date: Tue, 16 Nov 2021 09:52:15 -0600 Subject: [PATCH] chore: update link --- src/experiments/super_tiles/components/GuidedInstallTile.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/experiments/super_tiles/components/GuidedInstallTile.js b/src/experiments/super_tiles/components/GuidedInstallTile.js index c041aa5e3..f5d7a395a 100644 --- a/src/experiments/super_tiles/components/GuidedInstallTile.js +++ b/src/experiments/super_tiles/components/GuidedInstallTile.js @@ -3,16 +3,14 @@ import { css } from '@emotion/react'; import SuperTile from './SuperTile'; import { Button, useTessen } from '@newrelic/gatsby-theme-newrelic'; import { navigate } from 'gatsby'; +import { SIGNUP_LINK } from '../../../data/constants'; const GuidedInstallTile = () => { const tessen = useTessen(); - const link = - 'https://docs.newrelic.com/docs/using-new-relic/welcome-new-relic/get-started/new-relic-guided-install-overview/'; - const handleButtonClick = () => { tessen.track('clickSuperTile', 'QuickstartLanding', { tile: 'guided' }); - navigate(link); + navigate(SIGNUP_LINK); }; return (