A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: type error

+1 -1
+1 -1
src/themes/blur/facet/index.inline.js
··· 32 32 33 33 document.querySelector("#btn-new-deck")?.addEventListener("click", async () => { 34 34 const state = await navigator.locks.query(); 35 - const held = (state.held ?? []).map((l) => l.name); 35 + const held = (state.held ?? []).flatMap((l) => l.name ? [l.name] : []); 36 36 37 37 let nextGroup; 38 38