added the scroll bar

This commit is contained in:
Connor Johnstone
2026-03-31 13:18:18 -04:00
parent 4b6844b85e
commit 07aa9908e8
4 changed files with 95 additions and 4 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ pub fn playlists_page() -> Html {
let all_artists = all_artists.clone();
use_effect_with((), move |_| {
wasm_bindgen_futures::spawn_local(async move {
if let Ok(artists) = api::list_artists(500, 0).await {
if let Ok(artists) = api::list_artists(0, 0).await {
all_artists.set(artists);
}
});