App - Minor Typo Fix (#334)

This commit is contained in:
Brewhouse Digital 2023-11-14 14:04:00 -06:00 committed by GitHub
parent 269fd89a4d
commit c137c2cfa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -271,10 +271,10 @@ export const instanceService = mkSingleton(
} catch (e) { } catch (e) {
warn(`Error spawning: ${e}`) warn(`Error spawning: ${e}`)
userInstanceLogger.error( 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( 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.`,
) )
} }
})() })()