diff --git a/src/_locales/en/messages.json b/src/_locales/en/messages.json index 3bc78c2382..94e5f5ad63 100644 --- a/src/_locales/en/messages.json +++ b/src/_locales/en/messages.json @@ -1415,19 +1415,19 @@ "message": "Desktop application invalidated the secure communication channel. Please retry this operation" }, "nativeMessagingInvalidEncryptionTitle": { - "message": "Desktop communication interupted" + "message": "Desktop communication interrupted" }, "biometricsNotEnabledTitle": { "message": "Biometrics not enabled" }, "biometricsNotEnabledDesc": { - "message": "Browser biometric requires desktop biometric to be enabled in the settings first." + "message": "Browser biometrics requires desktop biometric to be enabled in the settings first." }, "biometricsNotSupportedTitle": { "message": "Biometrics not supported" }, "biometricsNotSupportedDesc": { - "message": "Browser biometric is not supported on this device." + "message": "Browser biometrics is not supported on this device." }, "personalOwnershipSubmitError": { "message": "Due to an Enterprise Policy, you are restricted from saving items to your personal vault. Change the Ownership option to an organization and choose from available Collections." diff --git a/src/background/nativeMessaging.background.ts b/src/background/nativeMessaging.background.ts index c8b8713861..0f76615406 100644 --- a/src/background/nativeMessaging.background.ts +++ b/src/background/nativeMessaging.background.ts @@ -1,4 +1,5 @@ import { ConstantsService } from 'jslib/services/constants.service'; +import { AppIdService } from 'jslib/abstractions/appId.service'; import { CryptoFunctionService } from 'jslib/abstractions/cryptoFunction.service'; import { CryptoService } from 'jslib/abstractions/crypto.service'; import { I18nService } from 'jslib/abstractions/i18n.service'; @@ -12,7 +13,6 @@ import { SymmetricCryptoKey } from 'jslib/models/domain'; import { BrowserApi } from '../browser/browserApi'; import RuntimeBackground from './runtime.background'; -import { AppIdService } from 'jslib/abstractions'; const MessageValidTimeout = 10 * 1000; const EncryptionAlgorithm = 'sha1';