fix: phoenix incorrect lookup order

This commit is contained in:
KernelDeimos 2024-10-21 18:07:45 -04:00
parent 891e799e5e
commit c8f913d710

View File

@ -35,7 +35,7 @@ export class CompositeCommandProvider {
for (const provider of this.providers) { for (const provider of this.providers) {
const commands = await provider.lookupAll(...a); const commands = await provider.lookupAll(...a);
if ( commands ) { if ( commands ) {
results.push(...commands); results.unshift(...commands);
} }
} }