refactor(cli): remove slicing from search helper
Removed the top 5 slicing constraint from the search helper function within the CLI package. This change allows to return all components whose score exceeds zero, instead of restricting it to the top 5.
This commit is contained in:
parent
86111a715f
commit
36f465f2cf
@ -56,6 +56,5 @@ export async function getSuggestion(componentNames: string[], input: string): Pr
|
||||
return componentJw
|
||||
.filter(([_, score]) => score > 0)
|
||||
.sort((a, b) => b[1] - a[1])
|
||||
.slice(0, 5)
|
||||
.map(([name]) => name)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user