aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/SupportScreen.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/settings/SupportScreen.tsx')
-rw-r--r--src/containers/settings/SupportScreen.tsx18
1 files changed, 7 insertions, 11 deletions
diff --git a/src/containers/settings/SupportScreen.tsx b/src/containers/settings/SupportScreen.tsx
index 4c50869bb..3fdb0b4df 100644
--- a/src/containers/settings/SupportScreen.tsx
+++ b/src/containers/settings/SupportScreen.tsx
@@ -1,16 +1,12 @@
1import { Component, type ReactElement } from 'react';
2
3import SupportFerdium from '../../components/settings/supportFerdium/SupportFerdiumDashboard'; 1import SupportFerdium from '../../components/settings/supportFerdium/SupportFerdiumDashboard';
4import ErrorBoundary from '../../components/util/ErrorBoundary'; 2import ErrorBoundary from '../../components/util/ErrorBoundary';
5 3
6class SupportScreen extends Component { 4const SupportScreen = () => {
7 render(): ReactElement { 5 return (
8 return ( 6 <ErrorBoundary>
9 <ErrorBoundary> 7 <SupportFerdium />
10 <SupportFerdium /> 8 </ErrorBoundary>
11 </ErrorBoundary> 9 );
12 ); 10};
13 }
14}
15 11
16export default SupportScreen; 12export default SupportScreen;