Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion packages/common/src/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ export * from './tan-query/tracks/useFileSizes'
export * from './tan-query/tracks/useTrackFileInfo'
export * from './tan-query/tracks/useUpdateTrack'
export * from './tan-query/tracks/useRemixedTracks'
export * from './tan-query/tracks/useRecommendedTracks'
export * from './tan-query/tracks/useSuggestedPlaylistTracks'
export * from './tan-query/tracks/useFeelingLuckyTrack'
export * from './tan-query/tracks/useRecentlyPlayedTracks'
Expand Down
1 change: 0 additions & 1 deletion packages/common/src/api/tan-query/queryKeys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ export const QUERY_KEYS = {
purchasers: 'purchasers',
purchasersCount: 'purchasersCount',
remixedTracks: 'remixedTracks',
recommendedTracks: 'recommendedTracks',
mutedUsers: 'mutedUsers',
salesAggregate: 'salesAggregate',
usdcTransactionsCount: 'usdcTransactionsCount',
Expand Down
74 changes: 0 additions & 74 deletions packages/common/src/api/tan-query/tracks/useRecommendedTracks.ts

This file was deleted.

1 change: 0 additions & 1 deletion packages/common/src/messages/explore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export const exploreMessages = {
fanClubs: 'Fan Clubs',
featuredRemixContests: 'Featured Remix Contests',
contests: 'Contests',
forYou: 'For You',
recentlyListedForSale: 'Recently Listed for Sale',
bestSelling: 'Best Selling',
topAlbumsThisMonth: 'Top Albums This Month',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { BestSellingAlbums } from './BestSellingAlbums'
import { FeaturedPlaylists } from './FeaturedPlaylists'
import { FeaturedRemixContests } from './FeaturedRemixContests'
import { FeelingLucky } from './FeelingLucky'
import { ForYouTracks } from './ForYouTracks'
import { LabelSpotlight } from './LabelSpotlight'
import { NewAlbumReleases } from './NewAlbumReleases'
import { RecentlyPlayedTracks } from './RecentlyPlayed'
Expand All @@ -31,7 +30,6 @@ export const ExploreContent = () => {

return (
<Flex gap='2xl' pt='s' pb={150} ph='l'>
{showTrackContent && showUserContextualContent && <ForYouTracks />}
{showPlaylistContent && <FeaturedPlaylists />}
{showTrackContent && <TrendingGenres />}
{showAlbumContent && <TopAlbumsThisMonth />}
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ const LABELS: Record<string, string> = {
tracksByAlbum: 'Album',
trackPageLineup: 'More tracks',
remixes: 'Remixes',
recommendedTracks: 'Recommended',
search: 'Search results'
}

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ import { NewAlbumReleasesSection } from './NewAlbumReleasesSection'
import { QuickSearchGrid } from './QuickSearchGrid'
import { RecentSearchesSection } from './RecentSearchesSection'
import { RecentlyPlayedSection } from './RecentlyPlayedSection'
import { RecommendedTracksSection } from './RecommendedTracksSection'
import { TopAlbumsThisMonthSection } from './TopAlbumsThisMonthSection'
import { TrendingGenresSection } from './TrendingGenresSection'
import { UndergroundTrendingTracksSection } from './UndergroundTrendingTracksSection'
Expand Down Expand Up @@ -177,11 +176,6 @@ const SearchExplorePage = ({
shouldRender: boolean
element: ReactNode
}[] = [
{
key: 'recommendedTracks',
shouldRender: showTrackContent && showUserContextualContent,
element: <RecommendedTracksSection />
},
{
key: 'featuredPlaylists',
shouldRender: showPlaylistContent,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import { NewAlbumReleasesSection } from '../desktop/NewAlbumReleasesSection'
import { QuickSearchGrid } from '../desktop/QuickSearchGrid'
import { RecentSearchesSection } from '../desktop/RecentSearchesSection'
import { RecentlyPlayedSection } from '../desktop/RecentlyPlayedSection'
import { RecommendedTracksSection } from '../desktop/RecommendedTracksSection'
import { TopAlbumsThisMonthSection } from '../desktop/TopAlbumsThisMonthSection'
import { UndergroundTrendingTracksSection } from '../desktop/UndergroundTrendingTracksSection'

Expand Down Expand Up @@ -228,9 +227,6 @@ const SearchExplorePage = ({
display: inputValue || showSearchResults ? 'none' : undefined
}}
>
{showTrackContent && showUserContextualContent ? (
<RecommendedTracksSection />
) : null}
{isTracksTab ? <QuickSearchGrid /> : null}
{showTrackContent && showUserContextualContent ? (
<RecentlyPlayedSection />
Expand Down
Loading