diff --git a/apps/browser/src/background/nativeMessaging.background.ts b/apps/browser/src/background/nativeMessaging.background.ts index d393022b7b9..88fd81a3a70 100644 --- a/apps/browser/src/background/nativeMessaging.background.ts +++ b/apps/browser/src/background/nativeMessaging.background.ts @@ -422,9 +422,10 @@ export class NativeMessagingBackground { } private async showFingerprintDialog() { - const fingerprint = ( - await this.cryptoService.getFingerprint(await this.stateService.getUserId(), this.publicKey) - ).join(" "); + const fingerprint = await this.cryptoService.getFingerprint( + await this.stateService.getUserId(), + this.publicKey + ); this.messagingService.send("showNativeMessagingFinterprintDialog", { fingerprint: fingerprint, diff --git a/apps/browser/src/popup/components/desktop-sync-verification-dialog.component.html b/apps/browser/src/popup/components/desktop-sync-verification-dialog.component.html index d9bb0e33b2a..20cbd2890f0 100644 --- a/apps/browser/src/popup/components/desktop-sync-verification-dialog.component.html +++ b/apps/browser/src/popup/components/desktop-sync-verification-dialog.component.html @@ -5,7 +5,7 @@ {{ "desktopIntegrationVerificationText" | i18n }}

- {{ params.fingerprint }} + {{ params.fingerprint.join("-") }}