From d2d64cf1d921d7738de1ebb8317bd367a269432e Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Sun, 24 Aug 2025 16:36:32 -0600 Subject: [PATCH] fix: replace the confusing phrase "Unnamed/Unknown" verbiage with "Not Named" --- src/libs/endorserServer.ts | 2 +- src/views/ContactGiftingView.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/endorserServer.ts b/src/libs/endorserServer.ts index 735252f7..a543ea8d 100644 --- a/src/libs/endorserServer.ts +++ b/src/libs/endorserServer.ts @@ -309,7 +309,7 @@ export function didInfoForContact( showDidForVisible: boolean = false, // eslint-disable-next-line @typescript-eslint/no-explicit-any ): { known: boolean; displayName: string; profileImageUrl?: string } { - if (!did) return { displayName: "Someone Unnamed/Unknown", known: false }; + if (!did) return { displayName: "Someone Not Named", known: false }; if (did === activeDid) { return { displayName: "You", known: true }; } else if (contact) { diff --git a/src/views/ContactGiftingView.vue b/src/views/ContactGiftingView.vue index 91d10c9c..403a1fbe 100644 --- a/src/views/ContactGiftingView.vue +++ b/src/views/ContactGiftingView.vue @@ -24,7 +24,7 @@ icon="circle-question" class="text-slate-400 text-4xl" /> - (Unnamed/Unknown) + (Not Named)