Skip to content

Commit

Permalink
fix: phoenix incorrect lookup order
Browse files Browse the repository at this point in the history
  • Loading branch information
KernelDeimos committed Oct 21, 2024
1 parent 891e799 commit c8f913d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class CompositeCommandProvider {
for (const provider of this.providers) {
const commands = await provider.lookupAll(...a);
if ( commands ) {
results.push(...commands);
results.unshift(...commands);
}
}

Expand Down

0 comments on commit c8f913d

Please sign in to comment.