npm package diff

Package: @forge/cli-shared

Versions: 6.8.0-next.14 - 6.8.0-next.13-experimental-f55f6f2

File: package/out/ui/multiple-table-prompt.js

Index: package/out/ui/multiple-table-prompt.js
===================================================================
--- package/out/ui/multiple-table-prompt.js
+++ package/out/ui/multiple-table-prompt.js
@@ -36,17 +36,8 @@
                 this.selectedIndexes.delete(rowIndex);
             }
             else {
                 this.selectedIndexes.add(rowIndex);
-                const choice = this.opt.choices.getChoice(rowIndex);
-                if (choice?.extra?.autoSelectId) {
-                    const installationId = this.opt.choices.getChoice(rowIndex).extra.autoSelectId;
-                    Array.from(this.opt.choices.choices).forEach((choice, index) => {
-                        if ('value' in choice && choice.value === installationId && !this.selectedIndexes.has(index)) {
-                            this.selectedIndexes.add(index);
-                        }
-                    });
-                }
             }
         }
     }
     addHoveredIfNoneSelected(selectedIndexes, pointer) {