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.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/webapp/components/should_verify_email.jsx b/webapp/components/should_verify_email.jsx
index 799f09c56..bbc677910 100644
--- a/webapp/components/should_verify_email.jsx
+++ b/webapp/components/should_verify_email.jsx
@@ -3,6 +3,8 @@
import {FormattedMessage} from 'react-intl';
+import PropTypes from 'prop-types';
+
import React from 'react';
import {Link} from 'react-router/es6';
@@ -111,5 +113,5 @@ export default class ShouldVerifyEmail extends React.Component {
ShouldVerifyEmail.defaultProps = {
};
ShouldVerifyEmail.propTypes = {
- location: React.PropTypes.object.isRequired
+ location: PropTypes.object.isRequired
};