aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/PasswordScreen.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/auth/PasswordScreen.tsx')
-rw-r--r--src/containers/auth/PasswordScreen.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/containers/auth/PasswordScreen.tsx b/src/containers/auth/PasswordScreen.tsx
index 3176e5a8b..313554802 100644
--- a/src/containers/auth/PasswordScreen.tsx
+++ b/src/containers/auth/PasswordScreen.tsx
@@ -1,9 +1,9 @@
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 Password from '../../components/auth/Password'; 4import Password from '../../components/auth/Password';
5 5
6class PasswordScreen extends Component<DefaultProps> { 6class PasswordScreen extends Component<StoresProps> {
7 render(): ReactElement { 7 render(): ReactElement {
8 const { actions, stores } = this.props; 8 const { actions, stores } = this.props;
9 9