summaryrefslogtreecommitdiffstats
path: root/webapp/components
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-04-27 16:03:31 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2016-04-27 16:03:31 -0400
commitada513a0146cfb570e3614f9b26c0465de3a1d94 (patch)
tree31eda01563a199296302a70fa84edff59815e50b /webapp/components
parentfa807d8e436e87b8c1749ea54c293a15c67f7f29 (diff)
downloadchat-ada513a0146cfb570e3614f9b26c0465de3a1d94.tar.gz
chat-ada513a0146cfb570e3614f9b26c0465de3a1d94.tar.bz2
chat-ada513a0146cfb570e3614f9b26c0465de3a1d94.zip
Fixing email verification flow (#2806)
Diffstat (limited to 'webapp/components')
-rw-r--r--webapp/components/do_verify_email.jsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/webapp/components/do_verify_email.jsx b/webapp/components/do_verify_email.jsx
index fe4d61a72..193205266 100644
--- a/webapp/components/do_verify_email.jsx
+++ b/webapp/components/do_verify_email.jsx
@@ -21,14 +21,13 @@ export default class DoVerifyEmail extends React.Component {
componentWillMount() {
const uid = this.props.location.query.uid;
const hid = this.props.location.query.hid;
- const teamName = this.props.location.query.teamname;
const email = this.props.location.query.email;
Client.verifyEmail(
uid,
hid,
() => {
- browserHistory.push('/' + teamName + '/login?extra=verified&email=' + email);
+ browserHistory.push('/login?extra=verified&email=' + email);
},
(err) => {
this.setState({verifyStatus: 'failure', serverError: err.message});