From 0245099fad5db96be2c4d18ce2e2a7bd21f8b21f Mon Sep 17 00:00:00 2001 From: Eric Promislow Date: Fri, 21 Jul 2023 16:35:24 -0700 Subject: [PATCH] tyop fix Signed-off-by: Eric Promislow --- pkg/rancher-desktop/backend/backendHelper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/rancher-desktop/backend/backendHelper.ts b/pkg/rancher-desktop/backend/backendHelper.ts index 7ed356c6f11..c88286534b9 100644 --- a/pkg/rancher-desktop/backend/backendHelper.ts +++ b/pkg/rancher-desktop/backend/backendHelper.ts @@ -184,7 +184,7 @@ export default class BackendHelper { return matchedVersion; } else if (versionIsLocked) { - // This is a bit subtle. If we're here, the user specified a non-existent version in the locked manifest. + // This is a bit subtle. If we're here, the user specified a nonexistent version in the locked manifest. // We can't switch to the default version, so throw a fatal error. throw new LockedFieldError(`Locked kubernetes version ${ currentConfigVersionString } isn't available.`); }