1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-13 15:03:26 +00:00

fix typos

This commit is contained in:
✨ Audrey ✨
2025-04-21 13:42:05 -04:00
parent d547c3f7ea
commit f07a3009f3
2 changed files with 2 additions and 2 deletions

View File

@@ -197,7 +197,7 @@ export class CredentialGeneratorComponent implements OnInit, OnChanges, OnDestro
this.maybeAlgorithm$
.pipe(
map((a) => {
if (a && a.i18nKeys.description) {
if (a?.i18nKeys?.description) {
return translate(a.i18nKeys.description, this.i18nService);
} else {
return "";

View File

@@ -33,7 +33,7 @@ export abstract class CredentialGeneratorService {
/** Emits metadata for the set of algorithms available to a user.
* @param type the set of algorithms
* @param dependences.account$ algorithms are filtered to only
* @param dependencies.account$ algorithms are filtered to only
* those matching the provided account's policy.
* @returns An observable that emits algorithm metadata.
*/