Add uncategorized category

This commit is contained in:
Sam Carlton 2021-03-04 21:29:39 -06:00
parent 5cded8a522
commit 7c4d36ac9d
2 changed files with 11 additions and 1 deletions

View file

@ -164,7 +164,7 @@ export default async function () {
slug: appSlug slug: appSlug
}), }),
category: { category: {
slug: 'no-category' slug: 'uncategorized'
}, },
relatedLinks relatedLinks
}) })

View file

@ -122,6 +122,16 @@ export const categories = {
slug: 'homebrew', slug: 'homebrew',
icon: '🍺' icon: '🍺'
}, },
// Uncategorized
'uncategorized': {
id: 1000,
...categoryTemplate,
label: 'Uncategorized',
pluralLabel: 'Uncategorized Software',
slug: 'uncategorized',
},
} }