summaryrefslogtreecommitdiffstats
path: root/webapp/components/signup/components/signup_email.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/signup/components/signup_email.jsx')
-rw-r--r--webapp/components/signup/components/signup_email.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/webapp/components/signup/components/signup_email.jsx b/webapp/components/signup/components/signup_email.jsx
index c33fb45e0..976b0648b 100644
--- a/webapp/components/signup/components/signup_email.jsx
+++ b/webapp/components/signup/components/signup_email.jsx
@@ -8,7 +8,7 @@ import {trackEvent} from 'actions/diagnostics_actions.jsx';
import BrowserStore from 'stores/browser_store.jsx';
import {getInviteInfo} from 'actions/team_actions.jsx';
-import {loginById, createUserWithInvite} from 'actions/user_actions.jsx';
+import {loadMe, loginById, createUserWithInvite} from 'actions/user_actions.jsx';
import * as Utils from 'utils/utils.jsx';
import Constants from 'utils/constants.jsx';
@@ -108,7 +108,7 @@ export default class SignupEmail extends React.Component {
}
finishSignup() {
- GlobalActions.emitInitialLoad(
+ loadMe(
() => {
const query = this.props.location.query;
GlobalActions.loadDefaultLocale();
@@ -132,7 +132,7 @@ export default class SignupEmail extends React.Component {
BrowserStore.setGlobalItem(this.state.hash, JSON.stringify({usedBefore: true}));
}
- GlobalActions.emitInitialLoad(
+ loadMe(
() => {
const query = this.props.location.query;
if (query.redirect_to) {