Discover page improvements + playlists albums changes (#55)

* MUS-42 Discover page improvements + playlist/album changes + various discovery fixes + tanstack query stuuff + placeholder image fix

* fix formatter truncate

* fix tests

* make lint

* fix make ci errors

* address copilot
This commit is contained in:
Harvey
2026-04-17 23:46:52 +00:00
committed by GitHub
parent d4d38e5392
commit 7fd6bb83bd
74 changed files with 8174 additions and 793 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
<script lang="ts">
import { albumHref } from '$lib/utils/entityRoutes';
import { Play, Music2 } from 'lucide-svelte';
import { Play, Disc3 } from 'lucide-svelte';
import type { TopSong, ResolvedTrack } from '$lib/types';
import AlbumImage from './AlbumImage.svelte';
import LastFmPlaceholder from './LastFmPlaceholder.svelte';
@@ -131,8 +131,8 @@
{#if isLastfmNoAlbum}
<LastFmPlaceholder />
{:else}
<div class="w-12 h-12 shrink-0 bg-base-300 rounded flex items-center justify-center">
<Music2 class="w-6 h-6 opacity-50" />
<div class="w-12 h-12 shrink-0 bg-base-200 rounded flex items-center justify-center">
<Disc3 class="w-6 h-6 text-base-content/20" />
</div>
{/if}