diff --git a/frontend/src/components/explore-view/explore-view.ts b/frontend/src/components/explore-view/explore-view.ts index 037b3bd..314b5dd 100644 --- a/frontend/src/components/explore-view/explore-view.ts +++ b/frontend/src/components/explore-view/explore-view.ts @@ -543,6 +543,11 @@ export class ExploreView extends LitElement { } // Phase 2: full pipeline (MB + LB + reranking). + // Fire-and-forget so the local results render immediately. + void this.executeFullSearch(version, query, startTime); + } + + private async executeFullSearch(version: number, query: string, startTime: number) { try { const result = await Search(query);