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

Fix type errors

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-08-05 15:33:40 -04:00
parent b8da594ff5
commit 0a51b768a0
2 changed files with 1 additions and 3 deletions

View File

@ -22,7 +22,6 @@ export * from "./hash-set";
export * from "./n-fircate";
export * from "./noop";
export * from "./observable-crate/impl";
export * from "./openBrowser";
export * from "./paths";
export * from "./promise-exec";
export * from "./readonly";

View File

@ -4,7 +4,6 @@
*/
import { getGlobalOverride } from "../test-utils/get-global-override";
import { noop } from "./noop";
import openLinkInBrowserInjectable from "./open-link-in-browser.injectable";
export default getGlobalOverride(openLinkInBrowserInjectable, () => noop);
export default getGlobalOverride(openLinkInBrowserInjectable, () => async () => {});