Skip to content

Commit

Permalink
Wrong i18n usage (#414)
Browse files Browse the repository at this point in the history
* fix: do not use unknown.x

* fix: do not use unknown.x
  • Loading branch information
jkoenig134 authored Feb 5, 2025
1 parent 9a2e275 commit 1c29687
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/runtime/src/dataViews/DataViewExpander.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1556,7 +1556,7 @@ export class DataViewExpander {
type: "IdentityDVO",
name: "i18n://dvo.identity.unknown",
initials: "",
description: "i18n://dvo.identity.unknown.description",
description: "i18n://dvo.identity.unknown",
publicKey: "i18n://dvo.identity.publicKey.unknown",
isSelf: false,
hasRelationship: false
Expand Down Expand Up @@ -1620,7 +1620,7 @@ export class DataViewExpander {
id: address,
name: name ?? "i18n://dvo.identity.unknown",
initials: name ? (name.match(/\b\w/g) ?? []).join("") : "",
description: "i18n://dvo.identity.unknown.description",
description: "i18n://dvo.identity.unknown",
isSelf: false,
hasRelationship: false
};
Expand Down

0 comments on commit 1c29687

Please sign in to comment.