diff --git a/apps/browser/src/popup/components/desktop-sync-verification-dialog.component.ts b/apps/browser/src/popup/components/desktop-sync-verification-dialog.component.ts index 4e5bbe18f7..78705e1ed5 100644 --- a/apps/browser/src/popup/components/desktop-sync-verification-dialog.component.ts +++ b/apps/browser/src/popup/components/desktop-sync-verification-dialog.component.ts @@ -2,12 +2,7 @@ import { DIALOG_DATA } from "@angular/cdk/dialog"; import { Component, Inject } from "@angular/core"; import { JslibModule } from "@bitwarden/angular/jslib.module"; -import { - AsyncActionsModule, - ButtonModule, - DialogModule, - DialogService, -} from "@bitwarden/components"; +import { ButtonModule, DialogModule, DialogService } from "@bitwarden/components"; export type DesktopSyncVerificationDialogParams = { fingerprint: string; @@ -16,7 +11,7 @@ export type DesktopSyncVerificationDialogParams = { @Component({ templateUrl: "desktop-sync-verification-dialog.component.html", standalone: true, - imports: [JslibModule, ButtonModule, DialogModule, AsyncActionsModule], + imports: [JslibModule, ButtonModule, DialogModule], }) export class DesktopSyncVerificationDialogComponent { constructor(@Inject(DIALOG_DATA) protected params: DesktopSyncVerificationDialogParams) {} diff --git a/apps/browser/src/popup/settings/await-desktop-dialog.component.html b/apps/browser/src/popup/settings/await-desktop-dialog.component.html index ed388075ce..688071a15d 100644 --- a/apps/browser/src/popup/settings/await-desktop-dialog.component.html +++ b/apps/browser/src/popup/settings/await-desktop-dialog.component.html @@ -1,5 +1,5 @@ - {{ "awaitDesktop" | i18n }}: + {{ "awaitDesktop" | i18n }} {{ "awaitDesktopDesc" | i18n }} diff --git a/apps/browser/src/popup/settings/await-desktop-dialog.component.ts b/apps/browser/src/popup/settings/await-desktop-dialog.component.ts index 6bccc927e6..9ed6efe036 100644 --- a/apps/browser/src/popup/settings/await-desktop-dialog.component.ts +++ b/apps/browser/src/popup/settings/await-desktop-dialog.component.ts @@ -1,17 +1,12 @@ import { Component } from "@angular/core"; import { JslibModule } from "@bitwarden/angular/jslib.module"; -import { - AsyncActionsModule, - ButtonModule, - DialogModule, - DialogService, -} from "@bitwarden/components"; +import { ButtonModule, DialogModule, DialogService } from "@bitwarden/components"; @Component({ templateUrl: "await-desktop-dialog.component.html", standalone: true, - imports: [JslibModule, ButtonModule, DialogModule, AsyncActionsModule], + imports: [JslibModule, ButtonModule, DialogModule], }) export class AwaitDesktopDialogComponent { static open(dialogService: DialogService) { diff --git a/apps/desktop/src/app/components/browser-sync-verification-dialog.component.html b/apps/desktop/src/app/components/browser-sync-verification-dialog.component.html index c05c7f26d8..caf2d47698 100644 --- a/apps/desktop/src/app/components/browser-sync-verification-dialog.component.html +++ b/apps/desktop/src/app/components/browser-sync-verification-dialog.component.html @@ -3,9 +3,10 @@ {{ "verifyBrowserTitle" | i18n }} - {{ "verifyBrowserDesc" | i18n }} -

- {{ params.fingerprint }} +

{{ "verifyBrowserDesc" | i18n }}

+

+ {{ params.fingerprint }} +