mirror of
https://github.com/sct/overseerr.git
synced 2025-12-27 16:46:29 +01:00
fix(watchlist): added missing prop for watchlist item removal button in watchlist page
This fix resolves a Watchlist page bug where the isAddedToWatchlist prop was missing. Without this prop, the removal button for watchlist items was absent. In this fix, the isAddedToWatchlist prop is re-added and set to true, allowing users to remove items from their local watchlist directly on the Watchlist page.
This commit is contained in:
@@ -46,6 +46,7 @@ const ListView = ({
|
||||
id={title.tmdbId}
|
||||
tmdbId={title.tmdbId}
|
||||
type={title.mediaType}
|
||||
isAddedToWatchlist={true}
|
||||
canExpand
|
||||
/>
|
||||
</li>
|
||||
|
||||
Reference in New Issue
Block a user