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.jsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/webapp/components/should_verify_email.jsx b/webapp/components/should_verify_email.jsx
index 5ac67e383..61edf9422 100644
--- a/webapp/components/should_verify_email.jsx
+++ b/webapp/components/should_verify_email.jsx
@@ -2,11 +2,12 @@
// See License.txt for license information.
import {FormattedMessage} from 'react-intl';
-import Client from 'client/web_client.jsx';
import React from 'react';
import {Link} from 'react-router/es6';
+import {resendVerification} from 'actions/user_actions.jsx';
+
export default class ShouldVerifyEmail extends React.Component {
constructor(props) {
super(props);
@@ -22,7 +23,7 @@ export default class ShouldVerifyEmail extends React.Component {
this.setState({resendStatus: 'sending'});
- Client.resendVerification(
+ resendVerification(
email,
() => {
this.setState({resendStatus: 'success'});