summaryrefslogtreecommitdiffstats
path: root/webapp/components/should_verify_email.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/should_verify_email.jsx')
-rw-r--r--webapp/components/should_verify_email.jsx20
1 files changed, 10 insertions, 10 deletions
diff --git a/webapp/components/should_verify_email.jsx b/webapp/components/should_verify_email.jsx
index 5103452b0..a95101ba1 100644
--- a/webapp/components/should_verify_email.jsx
+++ b/webapp/components/should_verify_email.jsx
@@ -2,7 +2,7 @@
// See License.txt for license information.
import {FormattedMessage} from 'react-intl';
-import * as Client from 'utils/client.jsx';
+import Client from 'utils/web_client.jsx';
import React from 'react';
import {Link} from 'react-router';
@@ -18,19 +18,19 @@ export default class ShouldVerifyEmail extends React.Component {
};
}
handleResend() {
- const teamName = this.props.location.query.teamname;
const email = this.props.location.query.email;
this.setState({resendStatus: 'sending'});
- Client.resendVerification(() => {
- this.setState({resendStatus: 'success'});
- },
- () => {
- this.setState({resendStatus: 'failure'});
- },
- teamName,
- email);
+ Client.resendVerification(
+ email,
+ () => {
+ this.setState({resendStatus: 'success'});
+ },
+ () => {
+ this.setState({resendStatus: 'failure'});
+ }
+ );
}
render() {
let resendConfirm = '';