diff --git a/src/phoenix/src/puter-shell/providers/CompositeCommandProvider.js b/src/phoenix/src/puter-shell/providers/CompositeCommandProvider.js index 91efa9a5..0dd03ada 100644 --- a/src/phoenix/src/puter-shell/providers/CompositeCommandProvider.js +++ b/src/phoenix/src/puter-shell/providers/CompositeCommandProvider.js @@ -35,7 +35,7 @@ export class CompositeCommandProvider { for (const provider of this.providers) { const commands = await provider.lookupAll(...a); if ( commands ) { - results.unshift(...commands); + results.push(...commands); } }