Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/compass-indexes/src/stores/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export function activateIndexesPlugin(
on(globalAppRegistry, 'refresh-data', () => {
void store.dispatch(fetchRegularIndexes());
if (options.isSearchIndexesSupported) {
void store.dispatch(fetchRegularIndexes());
void store.dispatch(fetchSearchIndexes());
Copy link
Preview

Copilot AI Aug 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The fix correctly addresses the bug where regular indexes were being fetched twice instead of fetching search indexes. This ensures both regular and search indexes are properly refreshed when supported.

Copilot uses AI. Check for mistakes.

}
});

Expand Down
Loading