aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/SupportScreen.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/settings/SupportScreen.js')
-rw-r--r--src/containers/settings/SupportScreen.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/containers/settings/SupportScreen.js b/src/containers/settings/SupportScreen.js
index 34dce1dae..7d3b22f19 100644
--- a/src/containers/settings/SupportScreen.js
+++ b/src/containers/settings/SupportScreen.js
@@ -4,6 +4,7 @@ import PropTypes from 'prop-types';
4 4
5import SupportFerdi from '../../components/settings/supportFerdi/SupportFerdiDashboard'; 5import SupportFerdi from '../../components/settings/supportFerdi/SupportFerdiDashboard';
6import ErrorBoundary from '../../components/util/ErrorBoundary'; 6import ErrorBoundary from '../../components/util/ErrorBoundary';
7import AppStore from '../../stores/AppStore';
7 8
8export default @inject('actions') class SupportScreen extends Component { 9export default @inject('actions') class SupportScreen extends Component {
9 constructor(props) { 10 constructor(props) {
@@ -29,8 +30,6 @@ export default @inject('actions') class SupportScreen extends Component {
29 30
30SupportScreen.wrappedComponent.propTypes = { 31SupportScreen.wrappedComponent.propTypes = {
31 actions: PropTypes.shape({ 32 actions: PropTypes.shape({
32 app: PropTypes.shape({ 33 app: PropTypes.instanceOf(AppStore).isRequired,
33 openExternalUrl: PropTypes.func.isRequired,
34 }).isRequired,
35 }).isRequired, 34 }).isRequired,
36}; 35};