Skip to content

Commit

Permalink
fix(Library): input and filters were missing
Browse files Browse the repository at this point in the history
  • Loading branch information
tymmesyde committed Feb 25, 2025
1 parent e5578c3 commit c63d01c
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions src/routes/Library/Library.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,18 +66,12 @@ const Library = ({ model, urlParams, queryParams }) => {
return (
<MainNavBars className={styles['library-container']} route={model}>
{
profile.auth === null ?
<Placeholder />
: <div className={styles['library-content']}>
{
model === 'continue_watching' ?
<div className={styles['selectable-inputs-container']}>
<Multiselect {...typeSelect} className={styles['select-input-container']} />
<Chips {...sortChips} className={styles['select-input-container']} />
</div>
:
null
}
profile.auth !== null ?
<div className={styles['library-content']}>
<div className={styles['selectable-inputs-container']}>
<Multiselect {...typeSelect} className={styles['select-input-container']} />
<Chips {...sortChips} className={styles['select-input-container']} />
</div>
{
model === 'library' ?
library.selected === null ?
Expand Down Expand Up @@ -110,6 +104,8 @@ const Library = ({ model, urlParams, queryParams }) => {
: null
}
</div>
:
<Placeholder />
}
</MainNavBars>
);
Expand Down

0 comments on commit c63d01c

Please sign in to comment.