1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Add missing injection token for implementation of tray item

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2022-05-09 12:51:05 +03:00
parent 0ae93ea5b6
commit c631547a04
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A

View File

@ -6,7 +6,8 @@ import { getInjectable } from "@ogre-tools/injectable";
import { computed } from "mobx";
import showApplicationWindowInjectable from "../../../start-main-application/lens-window/show-application-window.injectable";
import checkForUpdatesInjectable from "../../../check-for-updates.injectable";
import isAutoUpdateEnabledInjectable from "../../../is-auto-update-enabled.injectable";
import isAutoUpdateEnabledInjectable from "../../../update-app/is-auto-update-enabled.injectable";
import { trayMenuItemInjectionToken } from "../tray-menu-item-injection-token";
const checkForUpdatesTrayItemInjectable = getInjectable({
id: "check-for-updates-tray-item",
@ -31,6 +32,8 @@ const checkForUpdatesTrayItemInjectable = getInjectable({
},
};
},
injectionToken: trayMenuItemInjectionToken,
});
export default checkForUpdatesTrayItemInjectable;