Version one on the App Store

This commit is contained in:
2026-04-05 19:44:30 +02:00
parent c780be089d
commit 3ebf1763ed
26 changed files with 2088 additions and 842 deletions
@@ -12,7 +12,6 @@ enum MANavigationDestination: Hashable {
case artist(MAArtist)
case album(MAAlbum)
case playlist(MAPlaylist)
case player(String) // playerId
}
/// ViewModifier to apply all navigation destinations consistently
@@ -36,8 +35,6 @@ struct MANavigationDestinations: ViewModifier {
AlbumDetailView(album: album)
case .playlist(let playlist):
PlaylistDetailView(playlist: playlist)
case .player(let playerId):
PlayerView(playerId: playerId)
}
}
}