From c63d01c8e4af75dcd9e70d209ac691d574d3e99e Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 25 Feb 2025 10:30:11 +0100 Subject: [PATCH] fix(Library): input and filters were missing --- src/routes/Library/Library.js | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) 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 }
+ : + } );