From ea6c417378a67079a80933142ea570e7822870ae Mon Sep 17 00:00:00 2001 From: Hampus Date: Wed, 2 Sep 2026 17:27:22 +0200 Subject: [PATCH] fix(discovery): keep category counts when a search resolves (#2363) --- fluxer_app/src/features/discovery/state/Discovery.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/fluxer_app/src/features/discovery/state/Discovery.ts b/fluxer_app/src/features/discovery/state/Discovery.ts index 65e0bf4c1..deb5cd15b 100644 --- a/fluxer_app/src/features/discovery/state/Discovery.ts +++ b/fluxer_app/src/features/discovery/state/Discovery.ts @@ -81,6 +81,7 @@ class Discovery { this.guilds = [...this.guilds, ...result.guilds]; } this.total = result.total; + this.categoryCounts = result.categoryCounts; this.loading = false; }); } catch {