summaryrefslogtreecommitdiffstats
path: root/webapp/components/do_verify_email.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/do_verify_email.jsx')
-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});