From c137c2cfa13a738b28f447dba34b5549773b829d Mon Sep 17 00:00:00 2001 From: Brewhouse Digital <66521220+brewhousedigital@users.noreply.github.com> Date: Tue, 14 Nov 2023 14:04:00 -0600 Subject: [PATCH] App - Minor Typo Fix (#334) --- src/services/InstanceService/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/InstanceService/index.ts b/src/services/InstanceService/index.ts index 27247126..89f6611f 100644 --- a/src/services/InstanceService/index.ts +++ b/src/services/InstanceService/index.ts @@ -271,10 +271,10 @@ export const instanceService = mkSingleton( } catch (e) { warn(`Error spawning: ${e}`) userInstanceLogger.error( - `Could not launch PocketBase ${instance.version}. Please review your instnace logs at https://app.pockethost.io/app/instances/${instance.id} and join us in the Discord support channel https://discord.gg/nVTxCMEcGT.`, + `Could not launch PocketBase ${instance.version}. Please review your instance logs at https://app.pockethost.io/app/instances/${instance.id} and join us in the Discord support channel https://discord.gg/nVTxCMEcGT.`, ) throw new Error( - `Could not launch PocketBase ${instance.version}. Please review your instnace logs at https://app.pockethost.io/app/instances/${instance.id} and join us in the Discord support channel https://discord.gg/nVTxCMEcGT.`, + `Could not launch PocketBase ${instance.version}. Please review your instance logs at https://app.pockethost.io/app/instances/${instance.id} and join us in the Discord support channel https://discord.gg/nVTxCMEcGT.`, ) } })()