From 740dca64432952c358b32ad117f6136725b3adfa Mon Sep 17 00:00:00 2001 From: Hamdan harish Date: Mon, 27 Jul 2026 18:40:31 +0530 Subject: [PATCH] fix incorrect username in recent contacts page --- mobile/lib/pages/select_contact_page.dart | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/mobile/lib/pages/select_contact_page.dart b/mobile/lib/pages/select_contact_page.dart index e1c66c9..dff6b72 100644 --- a/mobile/lib/pages/select_contact_page.dart +++ b/mobile/lib/pages/select_contact_page.dart @@ -327,9 +327,7 @@ class _SelectContactPageState extends State { (thread) => _buildContactTile( id: thread.id, displayName: thread.title, - username: thread.title - .replaceAll(' ', '') - .toLowerCase(), + username: thread.username ?? "", ), ), ],