diff --git a/web/src/components/Donate/DonateDialog.jsx b/web/src/components/Donate/DonateDialog.jsx index 78b2c05..d29c34c 100644 --- a/web/src/components/Donate/DonateDialog.jsx +++ b/web/src/components/Donate/DonateDialog.jsx @@ -9,34 +9,35 @@ import Button from '@material-ui/core/Button' import { useTranslation } from 'react-i18next' const donateFrame = - '' + '' export default function DonateDialog({ onClose }) { - const { t } = useTranslation() + const { t } = useTranslation() - return ( - - {t('Donate')} - - - - - - - - - - {/* eslint-disable-next-line react/no-danger */} -
- - - + return ( + + {t('Donate')} + + + + + + + + + + + {/* eslint-disable-next-line react/no-danger */} +
+ + + - - - -
- ) + + + +
+ ) }