fix series episode label

This commit is contained in:
Anderson Oki 2024-04-23 15:09:06 +09:00
parent a6db5cfcf6
commit 674bbc8be9
1 changed files with 5 additions and 5 deletions

View File

@ -68,14 +68,14 @@ const SeriesView: FunctionComponent = () => {
}
return (
<Progress
<Progress.Root
key={title}
size="xl"
color={episodeMissingCount === 0 ? "brand" : "yellow"}
value={progress}
>
<Progress.Label>{label}</Progress.Label>
</Progress>
<Progress.Section value={progress} color={episodeMissingCount === 0 ? "brand" : "yellow"}>
<Progress.Label>{label}</Progress.Label>
</Progress.Section>
</Progress.Root>
);
},
},