From 97ccb3cb7c71fcc565ac92c892d527deacb5f9f9 Mon Sep 17 00:00:00 2001 From: codytseng Date: Mon, 3 Feb 2025 21:12:30 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=F0=9F=92=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/client.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/client.service.ts b/src/services/client.service.ts index 522c4cdb..edffa297 100644 --- a/src/services/client.service.ts +++ b/src/services/client.service.ts @@ -505,7 +505,7 @@ class ClientService extends EventTarget { } async searchProfilesFromIndex(query: string) { - const result = await this.userIndex.searchAsync(query, { limit: 10 }) + const result = await this.userIndex.searchAsync(query, { limit: 100 }) return Promise.all(result.map((pubkey) => this.fetchProfile(pubkey as string))).then( (profiles) => profiles.filter(Boolean) as TProfile[] )