summaryrefslogtreecommitdiffstats
path: root/webapp/components/integrations/components/confirm_integration.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/integrations/components/confirm_integration.jsx')
-rw-r--r--webapp/components/integrations/components/confirm_integration.jsx8
1 files changed, 5 insertions, 3 deletions
diff --git a/webapp/components/integrations/components/confirm_integration.jsx b/webapp/components/integrations/components/confirm_integration.jsx
index 70dc787e1..30f6034d5 100644
--- a/webapp/components/integrations/components/confirm_integration.jsx
+++ b/webapp/components/integrations/components/confirm_integration.jsx
@@ -1,3 +1,5 @@
+import PropTypes from 'prop-types';
+
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
@@ -15,9 +17,9 @@ import Constants from 'utils/constants.jsx';
export default class ConfirmIntegration extends React.Component {
static get propTypes() {
return {
- team: React.PropTypes.object,
- location: React.PropTypes.object,
- loading: React.PropTypes.bool
+ team: PropTypes.object,
+ location: PropTypes.object,
+ loading: PropTypes.bool
};
}