Skip to content

Commit

Permalink
fix dropdown option
Browse files Browse the repository at this point in the history
  • Loading branch information
inker committed Jul 3, 2024
1 parent 153c41a commit 86833d1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/routes/Navbar/SelectSeason.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ function SelectSeason({ tournament, stage, season, onChange }: Props) {
onChange={onStageChange}
value={stage}
>
<option value="gs">Group Stage</option>
{tournament !== 'wc' && season >= 2024 ? (
<option value="ls">League Stage</option>
) : (
<option value="gs">Group Stage</option>
)}
{tournament !== 'wc' && <option value="ko">Knockout Stage</option>}
</Select>
<Select
Expand Down

0 comments on commit 86833d1

Please sign in to comment.