Skip to content

Commit

Permalink
linting failures from community pr update (#7434)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jingo88 authored Jan 3, 2024
1 parent 1b4717a commit eebd10d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -355,14 +355,14 @@ export class AddEditComponent extends BaseAddEditComponent {
this.platformUtilsService.showToast(
"success",
null,
this.i18nService.t("totpCaptureSuccess")
this.i18nService.t("totpCaptureSuccess"),
);
}
} catch (e) {
this.platformUtilsService.showToast(
"error",
this.i18nService.t("errorOccurred"),
this.i18nService.t("totpCaptureError")
this.i18nService.t("totpCaptureError"),
);
}
}
Expand Down
2 changes: 1 addition & 1 deletion libs/angular/src/vault/components/add-edit.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ export class AddEditComponent implements OnInit, OnDestroy {
this.platformUtilsService.showToast(
"info",
null,
this.i18nService.t("valueCopied", this.i18nService.t(typeI18nKey))
this.i18nService.t("valueCopied", this.i18nService.t(typeI18nKey)),
);

if (typeI18nKey === "password") {
Expand Down

0 comments on commit eebd10d

Please sign in to comment.