Skip to content

Commit

Permalink
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/InstallButton.js
Original file line number Diff line number Diff line change
@@ -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);
};

0 comments on commit 165c102

Please sign in to comment.