aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers')
-rw-r--r--src/containers/auth/WelcomeScreen.tsx4
-rw-r--r--src/containers/layout/AppLayoutContainer.tsx1
-rw-r--r--src/containers/settings/EditSettingsScreen.tsx2
-rw-r--r--src/containers/settings/EditUserScreen.tsx2
4 files changed, 0 insertions, 9 deletions
diff --git a/src/containers/auth/WelcomeScreen.tsx b/src/containers/auth/WelcomeScreen.tsx
index 561eef236..1f3f50e4a 100644
--- a/src/containers/auth/WelcomeScreen.tsx
+++ b/src/containers/auth/WelcomeScreen.tsx
@@ -8,10 +8,6 @@ interface IProps extends Partial<StoresProps> {}
8@inject('stores', 'actions') 8@inject('stores', 'actions')
9@observer 9@observer
10class WelcomeScreen extends Component<IProps> { 10class WelcomeScreen extends Component<IProps> {
11 constructor(props: IProps) {
12 super(props);
13 }
14
15 render(): ReactElement { 11 render(): ReactElement {
16 const { user, recipePreviews } = this.props.stores!; 12 const { user, recipePreviews } = this.props.stores!;
17 13
diff --git a/src/containers/layout/AppLayoutContainer.tsx b/src/containers/layout/AppLayoutContainer.tsx
index 1929492ff..e30c0e067 100644
--- a/src/containers/layout/AppLayoutContainer.tsx
+++ b/src/containers/layout/AppLayoutContainer.tsx
@@ -74,7 +74,6 @@ class AppLayoutContainer extends Component<IProps> {
74 74
75 const workspacesDrawer = ( 75 const workspacesDrawer = (
76 <WorkspaceDrawer 76 <WorkspaceDrawer
77 // eslint-disable-next-line no-confusing-arrow
78 getServicesForWorkspace={workspace => 77 getServicesForWorkspace={workspace =>
79 workspace 78 workspace
80 ? workspaceStore.getWorkspaceServices(workspace).map(s => s.name) 79 ? workspaceStore.getWorkspaceServices(workspace).map(s => s.name)
diff --git a/src/containers/settings/EditSettingsScreen.tsx b/src/containers/settings/EditSettingsScreen.tsx
index 0f3359bfc..7cdff7fde 100644
--- a/src/containers/settings/EditSettingsScreen.tsx
+++ b/src/containers/settings/EditSettingsScreen.tsx
@@ -1172,8 +1172,6 @@ class EditSettingsScreen extends Component<EditSettingsScreenProps> {
1172 }; 1172 };
1173 } 1173 }
1174 1174
1175 // @ts-ignore: Remove this ignore once mobx-react-form v4 with typescript
1176 // support has been released.
1177 return new Form(config); 1175 return new Form(config);
1178 } 1176 }
1179 1177
diff --git a/src/containers/settings/EditUserScreen.tsx b/src/containers/settings/EditUserScreen.tsx
index 0d6c47da5..10c308524 100644
--- a/src/containers/settings/EditUserScreen.tsx
+++ b/src/containers/settings/EditUserScreen.tsx
@@ -126,8 +126,6 @@ class EditUserScreen extends Component<EditUserScreenProps> {
126 }, 126 },
127 }; 127 };
128 128
129 // @ts-ignore: Remove this ignore once mobx-react-form v4 with typescript
130 // support has been released.
131 return new Form(config); 129 return new Form(config);
132 } 130 }
133 131