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.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/containers/settings/SupportScreen.js b/src/containers/settings/SupportScreen.js
index b4ad952b2..142bd3a57 100644
--- a/src/containers/settings/SupportScreen.js
+++ b/src/containers/settings/SupportScreen.js
@@ -2,7 +2,7 @@ import { Component } from 'react';
2import { inject } from 'mobx-react'; 2import { inject } from 'mobx-react';
3import PropTypes from 'prop-types'; 3import PropTypes from 'prop-types';
4 4
5import SupportFerdi from '../../components/settings/supportFerdi/SupportFerdiDashboard'; 5import SupportFerdium from '../../components/settings/supportFerdium/SupportFerdiumDashboard';
6import ErrorBoundary from '../../components/util/ErrorBoundary'; 6import ErrorBoundary from '../../components/util/ErrorBoundary';
7import AppStore from '../../stores/AppStore'; 7import AppStore from '../../stores/AppStore';
8 8
@@ -20,7 +20,7 @@ class SupportScreen extends Component {
20 render() { 20 render() {
21 return ( 21 return (
22 <ErrorBoundary> 22 <ErrorBoundary>
23 <SupportFerdi openLink={this.openLink} /> 23 <SupportFerdium openLink={this.openLink} />
24 </ErrorBoundary> 24 </ErrorBoundary>
25 ); 25 );
26 } 26 }