We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd0f192 commit 3fe2f69Copy full SHA for 3fe2f69
client/src/addon_manager/commands/getAddons.ts
@@ -34,7 +34,7 @@ export default async (context: vscode.ExtensionContext) => {
34
const CHUNK_SIZE = 30;
35
36
// Get list of addons and sort them alphabetically
37
- const addonList = Array.from(addonManager_service_1.default.addons.values()).filter(a => a.displayName !== '.DS_Store');
+ const addonList = Array.from(addonManager.addons.values());
38
addonList.sort((a, b) => a.displayName.localeCompare(b.displayName));
39
40
// Send addons to client in chunks
0 commit comments