From 19c7ba7f0473c9739761b7b9498fd3a5d94d4d4a Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 21 Aug 2024 18:21:51 +0200 Subject: [PATCH] fix wrong import --- src/main/utils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/utils.ts b/src/main/utils.ts index e334f95..1c13755 100644 --- a/src/main/utils.ts +++ b/src/main/utils.ts @@ -27,11 +27,11 @@ import { APP_STORE_APP_ID, DEVHUB_APP_ID, DISTRIBUTION_TYPE_DEFAULT_APP } from ' import { getErrorMessage } from '$shared/helpers'; import type { AppToInstall, DistributionInfoV1 } from '$shared/types'; import { + type AdminWindow, APP_NAME_EXISTS_ERROR, type EventKeys, type EventMap, LOADING_PROGRESS_UPDATE, - type Screen, type WindowInfoRecord, } from '$shared/types'; @@ -294,7 +294,7 @@ export async function factoryResetUtility({ }: { launcherFileSystem: LauncherFileSystem; windowInfoMap: WindowInfoRecord; - privilegedLauncherWindows?: Record; + privilegedLauncherWindows?: Record; holochainManagers: Record; lairHandle?: ChildProcessWithoutNullStreams; app: Electron.App;