diff --git a/helpers/build-app-list.js b/helpers/build-app-list.js index f5d07b3..2426b11 100644 --- a/helpers/build-app-list.js +++ b/helpers/build-app-list.js @@ -164,7 +164,7 @@ export default async function () { slug: appSlug }), category: { - slug: 'no-category' + slug: 'uncategorized' }, relatedLinks }) diff --git a/helpers/categories.js b/helpers/categories.js index 75661ed..2f4e36e 100644 --- a/helpers/categories.js +++ b/helpers/categories.js @@ -122,6 +122,16 @@ export const categories = { slug: 'homebrew', icon: '🍺' }, + + + // Uncategorized + 'uncategorized': { + id: 1000, + ...categoryTemplate, + label: 'Uncategorized', + pluralLabel: 'Uncategorized Software', + slug: 'uncategorized', + }, }