|
|
@@ -460,7 +460,7 @@ export function Autocomplete(props: {
|
|
|
|
|
|
// Files come from fff already fuzzy ranked and filtered
|
|
|
// it shouldn't be additionally sorted by fuzzysort as it will loose the results
|
|
|
- const fileOptions: AutocompleteOption[] = store.visible === "@" && !files.loading ? fileSearch.options : []
|
|
|
+ const fileOptions: AutocompleteOption[] = store.visible === "@" ? fileSearch.options : []
|
|
|
const nonFileOptions: AutocompleteOption[] =
|
|
|
store.visible === "@" ? [...referenceAliasesValue, ...agentsValue, ...mcpResources()] : [...commandsValue]
|
|
|
|