Browse Source

fix: wait no

KernelDeimos 18 hours ago
parent
commit
12e0cecf02
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/phoenix/src/puter-shell/providers/CompositeCommandProvider.js

+ 1 - 1
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);
             }
         }