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.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/containers/settings/SupportScreen.js b/src/containers/settings/SupportScreen.js
index 7d3b22f19..646f672ce 100644
--- a/src/containers/settings/SupportScreen.js
+++ b/src/containers/settings/SupportScreen.js
@@ -6,7 +6,8 @@ import SupportFerdi from '../../components/settings/supportFerdi/SupportFerdiDas
6import ErrorBoundary from '../../components/util/ErrorBoundary'; 6import ErrorBoundary from '../../components/util/ErrorBoundary';
7import AppStore from '../../stores/AppStore'; 7import AppStore from '../../stores/AppStore';
8 8
9export default @inject('actions') class SupportScreen extends Component { 9@inject('actions')
10class SupportScreen extends Component {
10 constructor(props) { 11 constructor(props) {
11 super(props); 12 super(props);
12 13
@@ -20,9 +21,7 @@ export default @inject('actions') class SupportScreen extends Component {
20 render() { 21 render() {
21 return ( 22 return (
22 <ErrorBoundary> 23 <ErrorBoundary>
23 <SupportFerdi 24 <SupportFerdi openLink={this.openLink} />
24 openLink={this.openLink}
25 />
26 </ErrorBoundary> 25 </ErrorBoundary>
27 ); 26 );
28 } 27 }
@@ -33,3 +32,5 @@ SupportScreen.wrappedComponent.propTypes = {
33 app: PropTypes.instanceOf(AppStore).isRequired, 32 app: PropTypes.instanceOf(AppStore).isRequired,
34 }).isRequired, 33 }).isRequired,
35}; 34};
35
36export default SupportScreen;