diff --git a/packages/mobile/src/screens/search-screen/SearchCategoriesAndFilters.tsx b/packages/mobile/src/screens/search-screen/SearchCategoriesAndFilters.tsx index 7a24c2eb38a..57286da4ed2 100644 --- a/packages/mobile/src/screens/search-screen/SearchCategoriesAndFilters.tsx +++ b/packages/mobile/src/screens/search-screen/SearchCategoriesAndFilters.tsx @@ -63,7 +63,15 @@ const SearchCategory = (props: SearchCategoryProps) => { } const filtersByCategory: Record = { - all: [], + all: [ + 'genre', + 'mood', + 'key', + 'bpm', + 'isPremium', + 'hasDownloads', + 'isVerified' + ], users: ['genre', 'isVerified'], tracks: [ 'genre', diff --git a/packages/web/src/pages/search-page/categories.ts b/packages/web/src/pages/search-page/categories.ts index 293871c71dc..94012620b0a 100644 --- a/packages/web/src/pages/search-page/categories.ts +++ b/packages/web/src/pages/search-page/categories.ts @@ -3,7 +3,17 @@ import { IconAlbum, IconNote, IconPlaylists, IconUser } from '@audius/harmony' import { Category } from './types' export const categories = { - all: { filters: [] }, + all: { + filters: [ + 'genre', + 'mood', + 'key', + 'bpm', + 'isPremium', + 'hasDownloads', + 'isVerified' + ] + }, profiles: { icon: IconUser, filters: ['genre', 'isVerified'] }, tracks: { icon: IconNote,