We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 07db503 + 97bc6b7 commit 85fb916Copy full SHA for 85fb916
lib/ui/chat/chat_info/add_group_members_screen.dart
@@ -59,7 +59,7 @@ class _AddGroupMembersScreenState extends ConsumerState<AddGroupMembersScreen> w
59
final originalText = _searchController.text;
60
String processedText = originalText;
61
62
- // Only remove whitespace if it looks like a public key (starts with npub or is hex-like)
+ // Only remove whitespace if it looks like a public key (starts with npub)
63
if (originalText.startsWith('npub')) {
64
processedText = originalText.replaceAll(RegExp(r'\s+'), '');
65
0 commit comments