mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 21:46:11 +05:00
fix bools
This commit is contained in:
@@ -33,7 +33,7 @@ export default function AboutDialog() {
|
|||||||
open={open}
|
open={open}
|
||||||
onClose={() => setOpen(false)}
|
onClose={() => setOpen(false)}
|
||||||
aria-labelledby='form-dialog-title'
|
aria-labelledby='form-dialog-title'
|
||||||
fullWidth='true'
|
fullWidth
|
||||||
maxWidth='sm'
|
maxWidth='sm'
|
||||||
>
|
>
|
||||||
<DialogTitle id='form-dialog-title'>{t('About')}</DialogTitle>
|
<DialogTitle id='form-dialog-title'>{t('About')}</DialogTitle>
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ export default function DonateDialog({ onClose }) {
|
|||||||
const { t } = useTranslation()
|
const { t } = useTranslation()
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dialog open onClose={onClose} aria-labelledby='form-dialog-title' fullWidth='true' maxWidth='xs'>
|
<Dialog open onClose={onClose} aria-labelledby='form-dialog-title' fullWidth maxWidth='xs'>
|
||||||
<DialogTitle id='form-dialog-title'>{t('Donate')}</DialogTitle>
|
<DialogTitle id='form-dialog-title'>{t('Donate')}</DialogTitle>
|
||||||
<DialogContent>
|
<DialogContent>
|
||||||
<List>
|
<List>
|
||||||
|
|||||||
Reference in New Issue
Block a user