@forge/cli

13.1.013.2.0-next.4-experimental-c6a3916
out/command-line/view/module-view.js
~out/command-line/view/module-view.jsModified
+2−2
Index: package/out/command-line/view/module-view.js
===================================================================
--- package/out/command-line/view/module-view.js
+++ package/out/command-line/view/module-view.js
@@ -11,10 +11,10 @@
     static MODULE_DETAILS_WIDTH = 100;
     constructor(ui) {
         this.ui = ui;
     }
-    async promptForList(message, choices) {
-        return this.ui.promptForList(message, [...choices]);
+    async promptForList(message, choices, config) {
+        return this.ui.promptForList(message, [...choices], config);
     }
     emptyLine() {
         this.ui.emptyLine();
     }