fix: add a JSON-parseable field, make small data tweaks, and add commentary on JSON fields

This commit is contained in:
2025-09-16 19:54:11 -06:00
parent f31a76b816
commit 28cea8f55b
6 changed files with 28 additions and 13 deletions

View File

@@ -315,7 +315,7 @@ export function didInfoForContact(
return { displayName: "You", known: true };
} else if (contact) {
return {
displayName: contact.name || "Contact With No Name",
displayName: contact.name || "Contact Without a Name",
known: true,
profileImageUrl: contact.profileImageUrl,
};