diff --git a/src/components/join-flow/welcome-step.jsx b/src/components/join-flow/welcome-step.jsx index 7610a0fad..305ec5899 100644 --- a/src/components/join-flow/welcome-step.jsx +++ b/src/components/join-flow/welcome-step.jsx @@ -50,7 +50,7 @@ class WelcomeStep extends React.Component { innerClassName="join-flow-inner-welcome-step" nextButton={this.props.createProjectOnComplete ? ( - + ({ module.exports.handleCompleteRegistration = createProject => (dispatch => { if (createProject) { - window.location = '/projects/editor/?tutorial=getStarted'; + // TODO: Ideally this would take you to the editor with the getting started + // tutorial open. We need to do some extra work to wait for the user + // to be logged in before we try creating a project due to replication lag. + window.location = '/'; } else { dispatch(sessionActions.refreshSession()); dispatch(module.exports.setRegistrationOpen(false));