Skip to content

Commit c8f913d

Browse files
committed
fix: phoenix incorrect lookup order
1 parent 891e799 commit c8f913d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/phoenix/src/puter-shell/providers/CompositeCommandProvider.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class CompositeCommandProvider {
3535
for (const provider of this.providers) {
3636
const commands = await provider.lookupAll(...a);
3737
if ( commands ) {
38-
results.push(...commands);
38+
results.unshift(...commands);
3939
}
4040
}
4141

0 commit comments

Comments
 (0)