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.
1 parent 7bad23f commit 4679450Copy full SHA for 4679450
1 file changed
desktop/src/features/search/useSearchResults.ts
@@ -187,6 +187,7 @@ export function useSearchResults({
187
? candidate.displayName
188
: (existing.displayName ?? candidate.displayName),
189
nip05Handle: existing.nip05Handle ?? candidate.nip05Handle ?? null,
190
+ ownerPubkey: existing.ownerPubkey ?? candidate.ownerPubkey ?? null,
191
isAgent: existing.isAgent || isKnownAgent,
192
});
193
};
@@ -205,6 +206,7 @@ export function useSearchResults({
205
206
displayName: agent.name,
207
avatarUrl: null,
208
nip05Handle: null,
209
+ ownerPubkey: null,
210
isAgent: true,
211
212
@@ -219,6 +221,7 @@ export function useSearchResults({
219
221
220
222
223
224
225
226
227
0 commit comments