aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.ts b/src/index.ts
index 3233714e0..0efd0437d 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -33,7 +33,7 @@ import { ifUndefined } from './jsUtils';
33 33
34import { mainIpcHandler as basicAuthHandler } from './features/basicAuth'; 34import { mainIpcHandler as basicAuthHandler } from './features/basicAuth';
35import ipcApi from './electron/ipc-api'; 35import ipcApi from './electron/ipc-api';
36import Tray from './lib/Tray'; 36import TrayIcon from './lib/Tray';
37import DBus from './lib/DBus'; 37import DBus from './lib/DBus';
38import Settings from './electron/Settings'; 38import Settings from './electron/Settings';
39import handleDeepLink from './electron/deepLinking'; 39import handleDeepLink from './electron/deepLinking';
@@ -251,7 +251,7 @@ const createWindow = () => {
251 }); 251 });
252 252
253 // Initialize System Tray 253 // Initialize System Tray
254 const trayIcon: Tray = new Tray(); 254 const trayIcon: TrayIcon = new TrayIcon();
255 255
256 // Initialize DBus interface 256 // Initialize DBus interface
257 const dbus = new DBus(trayIcon); 257 const dbus = new DBus(trayIcon);