diff --git a/android/app/src/main/java/com/fabledsword/minstrel/home/ui/HomeScreen.kt b/android/app/src/main/java/com/fabledsword/minstrel/home/ui/HomeScreen.kt index 58841748..e3d047fb 100644 --- a/android/app/src/main/java/com/fabledsword/minstrel/home/ui/HomeScreen.kt +++ b/android/app/src/main/java/com/fabledsword/minstrel/home/ui/HomeScreen.kt @@ -476,18 +476,18 @@ private fun HomeSuccessContent( onPlayPlaylist = onPlayPlaylist, ) } - recentlyAddedSection(sections.recentlyAddedAlbums, onAlbumClick, onPlayAlbum) - rediscoverSection( - albums = sections.rediscoverAlbums, - artists = sections.rediscoverArtists, + youMightLikeSection( + albums = sections.youMightLikeAlbums, + artists = sections.youMightLikeArtists, onAlbumClick = onAlbumClick, onArtistClick = onArtistClick, onPlayAlbum = onPlayAlbum, onPlayArtist = onPlayArtist, ) - youMightLikeSection( - albums = sections.youMightLikeAlbums, - artists = sections.youMightLikeArtists, + recentlyAddedSection(sections.recentlyAddedAlbums, onAlbumClick, onPlayAlbum) + rediscoverSection( + albums = sections.rediscoverAlbums, + artists = sections.rediscoverArtists, onAlbumClick = onAlbumClick, onArtistClick = onArtistClick, onPlayAlbum = onPlayAlbum, @@ -691,9 +691,9 @@ private fun RediscoverBlock( /** * "You might like" — in-library albums/artists predicted from the user's * taste that they don't actively spin (server section, daily-built, cold- - * start gated). Same albums-then-artists block shape as Rediscover; the - * artist sub-row drops its title when an album sub-row precedes it so the - * two read as one section. + * start gated). Sits directly under the system-playlists row. Same + * albums-then-artists block shape as Rediscover; the artist sub-row drops + * its title when an album sub-row precedes it so the two read as one section. */ private fun LazyListScope.youMightLikeSection( albums: List>,