${x.category}
${x.title}
${x.summary}
RemoveYour workshop shelf
This private browser list keeps your selected courses close without creating an account.
Find another course${x.category}
${x.summary}
RemoveYour Fallows shelf is empty. Browse the catalog to save a course.
`; } document.addEventListener("click", e => { const a = e.target.closest("[data-remove]"); if (!a) return; e.preventDefault(); let ids = JSON.parse(localStorage.getItem("crispvanta-fallows") || "[]"); ids = ids.filter(id => id !== Number(a.dataset.remove)); localStorage.setItem("crispvanta-fallows", JSON.stringify(ids)); renderFallows(); }); renderFallows();