From c2dc76bf86d71b835fd991bdffd1276f3295d1cd Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Wed, 22 Jun 2022 13:03:41 -0400 Subject: [PATCH] Fix remaining type errors Signed-off-by: Sebastian Malton --- .../notifications/show-error-notification.injectable.ts | 2 +- .../notifications/show-info-notification.injectable.ts | 2 +- .../components/notifications/show-short-info.injectable.ts | 2 +- .../notifications/show-success-notification.injectable.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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";