+
- const searchUpdated = search => {
- updateContactFormSearchQuery(search)
+
+
+ {filteredNetworkNodes.map(node => (
+ -
+
+ {node.alias.length > 0 ? (
+
+ {node.alias.trim()}
+
+ ({node.pub_key.substr(0, 10)}
+ ...
+ {node.pub_key.substr(node.pub_key.length - 10)})
+
+
+ ) : (
+
+ {node.pub_key}
+
+ )}
+
+
+
+ ))}
+
+
- if (search.includes('@') && search.split('@')[0].length === 66) {
- updateManualFormSearchQuery(search)
- }
+ {showManualForm && (
+
+
+ Hm, looks like we can't see that node from here, wanna try to manually connect?
+
+
+ Connect Manually
+
+
+ )}
+
+ )
}
-
- return (
-