From 4c02bd0698dbdaa0b1eb0b663c0118afdc5cf21c Mon Sep 17 00:00:00 2001 From: Liam Fitzgerald Date: Mon, 19 Apr 2021 15:32:40 +1000 Subject: [PATCH] launch: fix reversed destructure This was causing the tutorial to never be shown. This change should be deployed with a new pill, to ensure comets show the tutorial. --- pkg/interface/src/views/apps/launch/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/interface/src/views/apps/launch/app.js b/pkg/interface/src/views/apps/launch/app.js index 400e2e1b9e..e9fa29426a 100644 --- a/pkg/interface/src/views/apps/launch/app.js +++ b/pkg/interface/src/views/apps/launch/app.js @@ -46,7 +46,7 @@ const ScrollbarLessBox = styled(Box)` const tutSelector = f.pick(['tutorialProgress', 'nextTutStep', 'hideGroups']); export default function LaunchApp(props) { - const connection = { props }; + const { connection } = props; const baseHash = useLaunchState(state => state.baseHash); const [hashText, setHashText] = useState(baseHash); const [exitingTut, setExitingTut] = useState(false);