aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/ChangeServerScreen.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/auth/ChangeServerScreen.tsx')
-rw-r--r--src/containers/auth/ChangeServerScreen.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/containers/auth/ChangeServerScreen.tsx b/src/containers/auth/ChangeServerScreen.tsx
index 6af87e4a1..6d0feaecb 100644
--- a/src/containers/auth/ChangeServerScreen.tsx
+++ b/src/containers/auth/ChangeServerScreen.tsx
@@ -1,10 +1,10 @@
1import { Component, ReactElement } from 'react'; 1import { Component, ReactElement } from 'react';
2import { inject, observer } from 'mobx-react'; 2import { inject, observer } from 'mobx-react';
3import { DefaultProps } from 'src/@types/ferdium-components.types'; 3import { StoresProps } from 'src/@types/ferdium-components.types';
4import ChangeServer from '../../components/auth/ChangeServer'; 4import ChangeServer from '../../components/auth/ChangeServer';
5 5
6class ChangeServerScreen extends Component<DefaultProps> { 6class ChangeServerScreen extends Component<StoresProps> {
7 constructor(props: DefaultProps) { 7 constructor(props: StoresProps) {
8 super(props); 8 super(props);
9 9
10 this.onSubmit = this.onSubmit.bind(this); 10 this.onSubmit = this.onSubmit.bind(this);