Skip to content

Commit

Permalink
Use clearer language for Episode on Deck when all eps watched (#938)
Browse files Browse the repository at this point in the history
  • Loading branch information
LordFlashmeow authored Jun 12, 2024
1 parent cf313d8 commit 85abda0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/pages/collection/series/SeriesOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,11 @@ const SeriesOverview = () => {
>
{nextUpEpisodeQuery.isSuccess && nextUpEpisodeQuery.data
? <EpisodeSummary seriesId={toNumber(seriesId)} episode={nextUpEpisodeQuery.data} nextUp />
: <div className="flex grow items-center justify-center font-semibold">No Episode Data Available!</div>}
: (
<div className="flex grow items-center justify-center font-semibold">
All available episodes have already been watched
</div>
)}
</ShokoPanel>
</div>
</div>
Expand Down

0 comments on commit 85abda0

Please sign in to comment.