Skip to content

Commit 00ae388

Browse files
Update to remove debugging
Addressing review feedback Co-authored-by: Gonzalo Riestra <[email protected]>
1 parent 6e2ad39 commit 00ae388

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

packages/app/src/cli/prompts/generate/extension.ts

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -62,20 +62,7 @@ export function buildChoices(extensionTemplates: ExtensionTemplate[], unavailabl
6262
}
6363
}
6464

65-
const sortedChoices = templateSpecChoices.sort(compareChoices)
66-
67-
// Log the sorted order of groups
68-
const groupsAfterSort = []
69-
let lastGroup = null
70-
for (const choice of sortedChoices) {
71-
if (choice.group !== lastGroup) {
72-
groupsAfterSort.push(choice.group)
73-
lastGroup = choice.group
74-
}
75-
}
76-
outputDebug(`Groups after sorting: ${JSON.stringify(groupsAfterSort)}`)
77-
78-
return sortedChoices
65+
return templateSpecChoices.sort(compareChoices)
7966
}
8067

8168
const generateExtensionPrompts = async (

0 commit comments

Comments
 (0)