From 41ba6f657d2bfd66a9b3b64934f7ac974787ca94 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Thu, 6 Jul 2023 19:37:25 -0700 Subject: [PATCH] add default name placeholder --- src/app.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app.rs b/src/app.rs index 7275a13..5496011 100644 --- a/src/app.rs +++ b/src/app.rs @@ -331,6 +331,8 @@ fn render_username(ui: &mut egui::Ui, contacts: &Contacts, pk: &Pubkey) { if let Some(display_name) = prof.display_name() { ui.strong(display_name); } + } else { + ui.strong("nostrich"); } /*