Liked
Artists
{#if artistsTotal === 0}
No liked artists yet.
{:else}
{#each artists as a (a.id)}
{/each}
{#if artistsQuery?.hasNextPage}
artistsQuery.fetchNextPage()} > {artistsQuery.isFetchingNextPage ? 'Loading…' : 'Load more'}
{/if} {/if}
Albums
{#if albumsTotal === 0}
No liked albums yet.
{:else}
{#each albums as al (al.id)}
{/each}
{#if albumsQuery?.hasNextPage}
albumsQuery.fetchNextPage()} > {albumsQuery.isFetchingNextPage ? 'Loading…' : 'Load more'}
{/if} {/if}
Tracks
{#if tracksTotal === 0}
No liked tracks yet.
{:else}
{#each tracks as t, i (t.id)}
{/each}
{#if tracksQuery?.hasNextPage}
tracksQuery.fetchNextPage()} > {tracksQuery.isFetchingNextPage ? 'Loading…' : 'Load more'}
{/if} {/if}