mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-29 16:07:40 +01:00
Misc bug fixes
This commit is contained in:
parent
e529916805
commit
b06f27eb97
2 changed files with 2 additions and 2 deletions
|
@ -111,7 +111,7 @@ export function MovieView(props) {
|
|||
return (
|
||||
<div className={`cardView showType-${streamData.type}`}>
|
||||
<Helmet>
|
||||
<title>{streamData.title}{streamData.type === 'show' && ` | S${season}E${episode}`} | movie-web</title>
|
||||
<title>{streamData.title}{streamData.type === 'show' ? ` | S${season}E${episode}` : ''} | movie-web</title>
|
||||
</Helmet>
|
||||
|
||||
<Card fullWidth>
|
||||
|
|
|
@ -140,7 +140,7 @@ export function SearchView() {
|
|||
<Helmet>
|
||||
<title>{type === 'movie' ? 'Movies' : 'TV Shows'} | movie-web</title>
|
||||
</Helmet>
|
||||
|
||||
|
||||
<Card>
|
||||
<DiscordBanner />
|
||||
{errorStatus ? <ErrorBanner>{errorStatus}</ErrorBanner> : ''}
|
||||
|
|
Loading…
Reference in a new issue