diff --git a/src/common/NavBar/NotificationsMenu/NotificationsList/NotificationsList.js b/src/common/NavBar/NotificationsMenu/NotificationsList/NotificationsList.js index 1f70672ca..f9c722b0b 100644 --- a/src/common/NavBar/NotificationsMenu/NotificationsList/NotificationsList.js +++ b/src/common/NavBar/NotificationsMenu/NotificationsList/NotificationsList.js @@ -18,6 +18,7 @@ const NotificationsList = ({ className, metaItems }) => { content.content.map((notification) => { //notifications videos are not available in useCatalogs, but in useNotifications hook notification.videos = notification.videos || [{ + title: 'Demo title', thumbnail: 'https://www.stremio.com/website/home-testimonials.jpg', season: 1, episode: 1, @@ -25,25 +26,17 @@ const NotificationsList = ({ className, metaItems }) => { }]; return ( - notification.videos.length === 1 ? - - : - + ); }) :