diff --git a/web/src/pages/audiobooks/components/ChaptersSection.tsx b/web/src/pages/audiobooks/components/ChaptersSection.tsx index 5a18150d..c1564566 100644 --- a/web/src/pages/audiobooks/components/ChaptersSection.tsx +++ b/web/src/pages/audiobooks/components/ChaptersSection.tsx @@ -86,9 +86,7 @@ export function ChaptersSection({ files, currentPositionSeconds, onSelect }: Cha aria-expanded={expanded} className="hover:text-primary flex items-center gap-2 text-xl font-semibold tracking-tight transition-colors" > - + Chapters ({rows.length}) diff --git a/web/src/pages/audiobooks/components/NarratorPicker.tsx b/web/src/pages/audiobooks/components/NarratorPicker.tsx index 9dd06a52..815acfd6 100644 --- a/web/src/pages/audiobooks/components/NarratorPicker.tsx +++ b/web/src/pages/audiobooks/components/NarratorPicker.tsx @@ -9,11 +9,7 @@ interface NarratorPickerProps { others: AudiobookNarration[]; } -export function NarratorPicker({ - currentNarrator, - currentContentId, - others, -}: NarratorPickerProps) { +export function NarratorPicker({ currentNarrator, currentContentId, others }: NarratorPickerProps) { const [open, setOpen] = useState(false); const wrapperRef = useRef(null); const navigate = useNavigate();