In your handler to remove the item you try this:
localStorage.setItem("watchlist", JSON.stringify(watchlist))
.then(() => {
renderMovies()
})
This is invalid since setItem() doesn't return anything so you're attempting to call renderMovies() on undefined.
Instead do this:
localStorage.setItem("watchlist", JSON.stringify(watchlist));
renderMovies();