diff --git a/src/routes/Library/Library.js b/src/routes/Library/Library.js index 8e19f123b..74f272b52 100644 --- a/src/routes/Library/Library.js +++ b/src/routes/Library/Library.js @@ -66,18 +66,12 @@ const Library = ({ model, urlParams, queryParams }) => { return ( { - profile.auth === null ? - - :
- { - model === 'continue_watching' ? -
- - -
- : - null - } + profile.auth !== null ? +
+
+ + +
{ model === 'library' ? library.selected === null ? @@ -110,6 +104,8 @@ const Library = ({ model, urlParams, queryParams }) => { : null }
+ : + } );