1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix console errors

This commit is contained in:
Bill Thornton 2024-07-19 11:30:57 -04:00
parent 112f8627b5
commit 5f61a431de
4 changed files with 43 additions and 8 deletions

View file

@ -20,8 +20,14 @@ const MarkdownBox: FC<MarkdownBoxProps> = ({
undefined
}
sx={{
'> :first-child': { marginTop: 0, paddingTop: 0 },
'> :last-child': { marginBottom: 0, paddingBottom: 0 }
'> :first-child /* emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason */': {
marginTop: 0,
paddingTop: 0
},
'> :last-child': {
marginBottom: 0,
paddingBottom: 0
}
}}
>
{markdown ? undefined : fallback}