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.
This commit is contained in:
Liam Fitzgerald 2021-04-19 15:32:40 +10:00
parent 643acbeffb
commit 4c02bd0698
No known key found for this signature in database
GPG Key ID: D390E12C61D1CFFB

View File

@ -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);