Skip to content

Commit

Permalink
update text
Browse files Browse the repository at this point in the history
  • Loading branch information
inker committed Jul 3, 2024
1 parent 5a5e346 commit 071c562
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions src/pages/cl/ls/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,19 +148,23 @@ function LeagueStage({ pots: initialPots }: Props) {
pairings={pairings}
/>
<div>
<div>
Drawn matches: {pairings.length}/{numMatches}
</div>
{isFixturesDone ? (
<p>All {numMatches} matches have been drawn.</p>
) : (
<p>
Drawn matches: {pairings.length}/{numMatches}
</p>
)}
{isFixturesDone && !isScheduleDone && (
<div>
The schedule is being generated. This will take a while. Do not
<p>
Now, constructing the schedule. This will take a while. Do not
close the page
<Dots
initialNum={3}
maxNum={3}
interval={1000}
/>
</div>
</p>
)}
</div>
</MatrixWrapper>
Expand Down

0 comments on commit 071c562

Please sign in to comment.