aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/layout/AppLayoutContainer.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/layout/AppLayoutContainer.tsx')
-rw-r--r--src/containers/layout/AppLayoutContainer.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/containers/layout/AppLayoutContainer.tsx b/src/containers/layout/AppLayoutContainer.tsx
index 0864fa027..b077cebd7 100644
--- a/src/containers/layout/AppLayoutContainer.tsx
+++ b/src/containers/layout/AppLayoutContainer.tsx
@@ -11,11 +11,11 @@ import AppLoader from '../../components/ui/AppLoader';
11import WorkspaceDrawer from '../../features/workspaces/components/WorkspaceDrawer'; 11import WorkspaceDrawer from '../../features/workspaces/components/WorkspaceDrawer';
12import { workspaceStore } from '../../features/workspaces'; 12import { workspaceStore } from '../../features/workspaces';
13 13
14interface AppLayoutContainerProps extends StoresProps {} 14interface IProps extends StoresProps {}
15 15
16@inject('stores', 'actions') 16@inject('stores', 'actions')
17@observer 17@observer
18class AppLayoutContainer extends Component<AppLayoutContainerProps> { 18class AppLayoutContainer extends Component<IProps> {
19 render(): ReactElement { 19 render(): ReactElement {
20 const { app, features, services, ui, settings, requests, user, router } = 20 const { app, features, services, ui, settings, requests, user, router } =
21 this.props.stores; 21 this.props.stores;
@@ -31,10 +31,10 @@ class AppLayoutContainer extends Component<AppLayoutContainerProps> {
31 31
32 const { 32 const {
33 setActive, 33 setActive,
34 handleIPCMessage, 34 // handleIPCMessage,
35 setWebviewReference, 35 setWebviewReference,
36 detachService, 36 detachService,
37 openWindow, 37 // openWindow,
38 reorder, 38 reorder,
39 reload, 39 reload,
40 toggleNotifications, 40 toggleNotifications,
@@ -118,10 +118,10 @@ class AppLayoutContainer extends Component<AppLayoutContainerProps> {
118 const servicesContainer = ( 118 const servicesContainer = (
119 <Services 119 <Services
120 services={services.allDisplayedUnordered} 120 services={services.allDisplayedUnordered}
121 handleIPCMessage={handleIPCMessage} 121 // handleIPCMessage={handleIPCMessage} // TODO - - [TECH DEBT] check it later
122 setWebviewReference={setWebviewReference} 122 setWebviewReference={setWebviewReference}
123 detachService={detachService} 123 detachService={detachService}
124 openWindow={openWindow} 124 // openWindow={openWindow} // TODO - - [TECH DEBT] check it later
125 reload={reload} 125 reload={reload}
126 openSettings={openSettings} 126 openSettings={openSettings}
127 update={updateService} 127 update={updateService}