remove parent span

This commit is contained in:
frost768 2023-03-16 22:10:45 +03:00
parent 9fe7bdcf47
commit 12555a5933
2 changed files with 7 additions and 8 deletions

View File

@ -17,6 +17,7 @@ export function Caption({ text }: { text?: string }) {
}),
}}
style={{
whiteSpace: "pre-line",
...captionSettings.style,
}}
/>

View File

@ -50,14 +50,12 @@ export function CaptionRenderer({
animation="slide-up"
show
>
<span>
{captions.current.map(
({ identifier, end, start, text }) =>
isVisible(start, end) && (
<Caption key={identifier || `${start}-${end}`} text={text} />
)
)}
</span>
{captions.current.map(
({ identifier, end, start, text }) =>
isVisible(start, end) && (
<Caption key={identifier || `${start}-${end}`} text={text} />
)
)}
</Transition>
);
}