aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2021-10-01 21:51:55 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2021-10-01 21:51:55 +0530
commit204a80708e6e0a2189de16438a3eb4b57ef84987 (patch)
treea8fa3afb58dbfec67bced4281837d33fd4e71413 /src/lib
parentrefactor: move 'asarRecipesPath' into 'asar-helpers' (diff)
downloadferdium-app-204a80708e6e0a2189de16438a3eb4b57ef84987.tar.gz
ferdium-app-204a80708e6e0a2189de16438a3eb4b57ef84987.tar.zst
ferdium-app-204a80708e6e0a2189de16438a3eb4b57ef84987.zip
refactor: split 'environment' into 'environment-remote' with only the remote module dependency
(might be a pre-requisite for the electron v14 upgrade)
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/Menu.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Menu.js b/src/lib/Menu.js
index 349748506..56d14ebee 100644
--- a/src/lib/Menu.js
+++ b/src/lib/Menu.js
@@ -14,13 +14,13 @@ import {
14 settingsShortcutKey, 14 settingsShortcutKey,
15 isLinux, 15 isLinux,
16 isMac, 16 isMac,
17 aboutAppDetails,
18 lockFerdiShortcutKey, 17 lockFerdiShortcutKey,
19 todosToggleShortcutKey, 18 todosToggleShortcutKey,
20 workspaceToggleShortcutKey, 19 workspaceToggleShortcutKey,
21 addNewServiceShortcutKey, 20 addNewServiceShortcutKey,
22 muteFerdiShortcutKey, 21 muteFerdiShortcutKey,
23} from '../environment'; 22} from '../environment';
23import { aboutAppDetails } from '../environment-remote';
24import { todosStore } from '../features/todos'; 24import { todosStore } from '../features/todos';
25import { todoActions } from '../features/todos/actions'; 25import { todoActions } from '../features/todos/actions';
26import { workspaceActions } from '../features/workspaces/actions'; 26import { workspaceActions } from '../features/workspaces/actions';