mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 15:52:02 +00:00
fix: linting
This commit is contained in:
parent
232c64b613
commit
aa3dedf8be
3 changed files with 5 additions and 5 deletions
|
|
@ -30,7 +30,7 @@ const EpisodePicker = ({ className, onSubmit }: Props) => {
|
|||
|
||||
const disabled = React.useMemo(() => season === parseInt(pathSeason) && episode === parseInt(pathEpisode), [pathSeason, pathEpisode, season, episode]);
|
||||
|
||||
return (
|
||||
return (
|
||||
<div className={className}>
|
||||
<NumberInput min={0} label={t('SEASON')} defaultValue={season} onUpdate={handleSeasonChange} showButtons />
|
||||
<NumberInput min={1} label={t('EPISODE')} defaultValue={episode} onUpdate={handleEpisodeChange} showButtons />
|
||||
|
|
|
|||
Loading…
Reference in a new issue