From 2ce5b5935d98ccbe720d78ff1cc70a1dd98e2d02 Mon Sep 17 00:00:00 2001 From: mfrederick Date: Fri, 5 Nov 2021 11:44:32 -0400 Subject: [PATCH] fix: update to id instead of target to match spec --- src/components/InstallButton.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/InstallButton.js b/src/components/InstallButton.js index d72864370..eea4366af 100644 --- a/src/components/InstallButton.js +++ b/src/components/InstallButton.js @@ -140,7 +140,7 @@ const InstallButton = ({ quickstart, location, ...props }) => { const startTarget = btoa( JSON.stringify({ source: 'nrio', - target: quickstart.id, + id: quickstart.id, }) ); Cookies.set('start_target', startTarget, options);