From d109cf5478e2a6ae52e20bc13a5f9533649b23f6 Mon Sep 17 00:00:00 2001 From: nikk gitanes Date: Wed, 22 Sep 2021 22:02:42 +0300 Subject: [PATCH] just format --- web/src/components/Donate/DonateDialog.jsx | 55 +++++++++++----------- 1 file changed, 27 insertions(+), 28 deletions(-) diff --git a/web/src/components/Donate/DonateDialog.jsx b/web/src/components/Donate/DonateDialog.jsx index d29c34c..452dc65 100644 --- a/web/src/components/Donate/DonateDialog.jsx +++ b/web/src/components/Donate/DonateDialog.jsx @@ -9,35 +9,34 @@ 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 */} +
+ + + + + + +
+ ) }