mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Revert accidental breaking change (#5703)
This commit is contained in:
parent
71427da02d
commit
fc770b4b44
@ -19,6 +19,7 @@ import { ConfirmDialog as _ConfirmDialog } from "../../renderer/components/confi
|
||||
import type { ConfirmDialogBooleanParams, ConfirmDialogParams, ConfirmDialogProps } from "../../renderer/components/confirm-dialog";
|
||||
import openConfirmDialogInjectable from "../../renderer/components/confirm-dialog/open.injectable";
|
||||
import confirmInjectable from "../../renderer/components/confirm-dialog/confirm.injectable";
|
||||
import notificationsStoreInjectable from "../../renderer/components/notifications/notifications-store.injectable";
|
||||
|
||||
// layouts
|
||||
export * from "../../renderer/components/layout/main-layout";
|
||||
@ -133,3 +134,5 @@ export class TerminalStore {
|
||||
console.warn("TerminalStore.resetInstance() does nothing");
|
||||
}
|
||||
}
|
||||
|
||||
export const notificationsStore = asLegacyGlobalForExtensionApi(notificationsStoreInjectable);
|
||||
|
||||
@ -4,4 +4,3 @@
|
||||
*/
|
||||
|
||||
export * from "./notifications";
|
||||
export * from "./notifications.store";
|
||||
|
||||
@ -5,9 +5,9 @@
|
||||
|
||||
import React from "react";
|
||||
import { Button } from "../components/button";
|
||||
import type { NotificationsStore } from "../components/notifications";
|
||||
import { Notifications } from "../components/notifications";
|
||||
import type { NavigateToPortForwards } from "../../common/front-end-routing/routes/cluster/network/port-forwards/navigate-to-port-forwards.injectable";
|
||||
import type { NotificationsStore } from "../components/notifications/notifications.store";
|
||||
|
||||
interface AboutPortForwardingDependencies {
|
||||
navigateToPortForwards: NavigateToPortForwards;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user