refactor(web): refactor album selection modal and album summary component (#9658)

This commit is contained in:
Snowknight26
2024-05-22 00:15:28 -05:00
committed by GitHub
parent 61b850f0ce
commit a341ab0050
5 changed files with 24 additions and 20 deletions

View File

@@ -89,7 +89,7 @@
{#if !shared && search.length === 0}
<p class="px-5 py-3 text-xs">RECENT</p>
{#each recentAlbums as album (album.id)}
<AlbumListItem variant="simple" {album} on:album={() => handleSelect(album)} />
<AlbumListItem {album} on:album={() => handleSelect(album)} />
{/each}
{/if}