summaryrefslogtreecommitdiffstats
path: root/webapp/components/password_reset_send_link.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/password_reset_send_link.jsx')
-rw-r--r--webapp/components/password_reset_send_link.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/webapp/components/password_reset_send_link.jsx b/webapp/components/password_reset_send_link.jsx
index 260ef7250..a301fb7d4 100644
--- a/webapp/components/password_reset_send_link.jsx
+++ b/webapp/components/password_reset_send_link.jsx
@@ -8,6 +8,8 @@ import client from 'client/web_client.jsx';
import {FormattedMessage, FormattedHTMLMessage} from 'react-intl';
+import PropTypes from 'prop-types';
+
import React from 'react';
import {Link} from 'react-router/es6';
@@ -148,7 +150,7 @@ class PasswordResetSendLink extends React.Component {
PasswordResetSendLink.defaultProps = {
};
PasswordResetSendLink.propTypes = {
- params: React.PropTypes.object.isRequired
+ params: PropTypes.object.isRequired
};
export default PasswordResetSendLink;