Skip to content

Commit

Permalink
fix(addon-manager): user addons
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanSalt committed Mar 11, 2022
1 parent 8af51ea commit cddee3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion addons/addon-manager/src/renderer/addon-manager-pane.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ const recommendations = $computed(() => {
if (!spec) return []
return [
...spec.recommendations!,
...discoveredAddons.filter(addon => addon.type === 'user'),
...discoveredAddons.filter(addon => addon.type === 'user')
.map(addon => addon.name),
]
})
Expand Down

0 comments on commit cddee3e

Please sign in to comment.