From 35b63caafc912dae2200b5b6497ad059189c5048 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Fri, 1 Apr 2016 09:26:28 -0400 Subject: Fixing signup flow. Better root redirect. Fixes back buttons. --- webapp/root.jsx | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) (limited to 'webapp/root.jsx') diff --git a/webapp/root.jsx b/webapp/root.jsx index 9c2708506..112f0880e 100644 --- a/webapp/root.jsx +++ b/webapp/root.jsx @@ -149,23 +149,6 @@ function preLoggedIn(nextState, replace, callback) { }); } -function onRootEnter(nextState, replace, callback) { - if (nextState.location.pathname === '/') { - Client.getMeLoggedIn((data) => { - if (!data || data.logged_in === 'false') { - replace({pathname: '/signup_team'}); - callback(); - } else { - replace({pathname: '/' + data.team_name + '/channels/town-square'}); - callback(); - } - }); - return; - } - - callback(); -} - function onPermalinkEnter(nextState) { const postId = nextState.params.postid; @@ -216,7 +199,6 @@ function renderRootComponent() {