diff --git a/src/components/InstallButton.js b/src/components/InstallButton.js index 2e69efeea..d72864370 100644 --- a/src/components/InstallButton.js +++ b/src/components/InstallButton.js @@ -137,10 +137,12 @@ const InstallButton = ({ quickstart, location, ...props }) => { options.domain = 'newrelic.com'; } - const startTarget = btoa(JSON.stringify({ - source: "nrio", - target: quickstart.id - })); + const startTarget = btoa( + JSON.stringify({ + source: 'nrio', + target: quickstart.id, + }) + ); Cookies.set('start_target', startTarget, options); Cookies.set('newrelic-quickstart-id', quickstart.id, options); };