diff --git a/src/experiments/super_tiles/components/GuidedInstallTile.js b/src/experiments/super_tiles/components/GuidedInstallTile.js index f5d7a395a..d622f0ee5 100644 --- a/src/experiments/super_tiles/components/GuidedInstallTile.js +++ b/src/experiments/super_tiles/components/GuidedInstallTile.js @@ -2,7 +2,7 @@ import React from 'react'; import { css } from '@emotion/react'; import SuperTile from './SuperTile'; import { Button, useTessen } from '@newrelic/gatsby-theme-newrelic'; -import { navigate } from 'gatsby'; +import { Link } from 'gatsby'; import { SIGNUP_LINK } from '../../../data/constants'; const GuidedInstallTile = () => { @@ -10,7 +10,6 @@ const GuidedInstallTile = () => { const handleButtonClick = () => { tessen.track('clickSuperTile', 'QuickstartLanding', { tile: 'guided' }); - navigate(SIGNUP_LINK); }; return ( @@ -61,7 +60,12 @@ const GuidedInstallTile = () => {
-