Skip to content

Commit

Permalink
Update src/routes/MetaDetails/StreamsList/StreamsList.js
Browse files Browse the repository at this point in the history
Co-authored-by: Timothy Z. <[email protected]>
  • Loading branch information
Botsy and kKaskak authored Feb 12, 2025
1 parent 3dcd002 commit 37020f3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/routes/MetaDetails/StreamsList/StreamsList.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,11 @@ const StreamsList = ({ className, video, onEpisodeSearch, ...props }) => {
props.streams.every((streams) => streams.content.type === 'Err') ?
<div className={styles['message-container']}>
<SeasonEpisodePicker className={styles['search']} onSubmit={handleEpisodePicker} />
{video?.upcoming && <div className={styles['label']}>{t('UPCOMING')}...</div>}
{
video?.upcoming ?

Check failure on line 140 in src/routes/MetaDetails/StreamsList/StreamsList.js

View workflow job for this annotation

GitHub Actions / build

Trailing spaces not allowed
<div className={styles['label']}>{t('UPCOMING')}...</div>
: null

Check failure on line 142 in src/routes/MetaDetails/StreamsList/StreamsList.js

View workflow job for this annotation

GitHub Actions / build

Expected indentation of 36 spaces but found 32
}
<Image className={styles['image']} src={require('/images/empty.png')} alt={' '} />
<div className={styles['label']}>{t('NO_STREAM')}</div>
{
Expand Down

0 comments on commit 37020f3

Please sign in to comment.