diff --git a/src/renderer/components/notifications/show-error-notification.injectable.ts b/src/renderer/components/notifications/show-error-notification.injectable.ts index bcc7f487cc..ca5a1a70da 100644 --- a/src/renderer/components/notifications/show-error-notification.injectable.ts +++ b/src/renderer/components/notifications/show-error-notification.injectable.ts @@ -3,7 +3,7 @@ * Licensed under MIT License. See LICENSE in root directory for more information. */ import { getInjectable } from "@ogre-tools/injectable"; -import type { ShowNotification } from "./notifications.store"; +import type { ShowNotification } from "./notifications"; import { NotificationStatus } from "./notifications.store"; import notificationsStoreInjectable from "./notifications-store.injectable"; diff --git a/src/renderer/components/notifications/show-info-notification.injectable.ts b/src/renderer/components/notifications/show-info-notification.injectable.ts index 25b1f48cfb..34bc443749 100644 --- a/src/renderer/components/notifications/show-info-notification.injectable.ts +++ b/src/renderer/components/notifications/show-info-notification.injectable.ts @@ -3,7 +3,7 @@ * Licensed under MIT License. See LICENSE in root directory for more information. */ import { getInjectable } from "@ogre-tools/injectable"; -import type { ShowNotification } from "./notifications.store"; +import type { ShowNotification } from "./notifications"; import { NotificationStatus } from "./notifications.store"; import notificationsStoreInjectable from "./notifications-store.injectable"; diff --git a/src/renderer/components/notifications/show-short-info.injectable.ts b/src/renderer/components/notifications/show-short-info.injectable.ts index aa94786147..b5865b4c27 100644 --- a/src/renderer/components/notifications/show-short-info.injectable.ts +++ b/src/renderer/components/notifications/show-short-info.injectable.ts @@ -4,7 +4,7 @@ */ import { getInjectable } from "@ogre-tools/injectable"; -import type { ShowNotification } from "./notifications.store"; +import type { ShowNotification } from "./notifications"; import showInfoNotificationInjectable from "./show-info-notification.injectable"; const showShortInfoNotificationInjectable = getInjectable({ diff --git a/src/renderer/components/notifications/show-success-notification.injectable.ts b/src/renderer/components/notifications/show-success-notification.injectable.ts index 938476714b..c75c84cc3d 100644 --- a/src/renderer/components/notifications/show-success-notification.injectable.ts +++ b/src/renderer/components/notifications/show-success-notification.injectable.ts @@ -3,7 +3,7 @@ * Licensed under MIT License. See LICENSE in root directory for more information. */ import { getInjectable } from "@ogre-tools/injectable"; -import type { ShowNotification } from "./notifications.store"; +import type { ShowNotification } from "./notifications"; import { NotificationStatus } from "./notifications.store"; import notificationsStoreInjectable from "./notifications-store.injectable";