Skip to content

Commit

Permalink
move semicolon to the left
Browse files Browse the repository at this point in the history
  • Loading branch information
yontank committed Dec 12, 2024
1 parent 747976d commit 18eacc6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/DonateModal/DonateModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ export const DonateModal: React.FC<DonateModalProps> = ({ isVisible, onClose })
<h2>{t('donation_through_bank_title')}</h2>
<p>{t('donation_through_bank_reccomendation')}</p>
<Typography id="modal-modal-description" sx={{ mt: 2 }}>
{t('bank')} :{t('donation_through_bank_details_bank')}
{t('bank')}: {t('donation_through_bank_details_bank')}
<br />
{t('branch')} :{t('donation_through_bank_details_branch')}
{t('branch')}: {t('donation_through_bank_details_branch')}
<br />
{t('account')} :{t('donation_through_bank_details_account')}
{t('account')}: {t('donation_through_bank_details_account')}
<br />
{t('account_name')} :{t('donation_through_bank_details_account_name')}
{t('account_name')}: {t('donation_through_bank_details_account_name')}
</Typography>
<sub>{t('donation_through_bank_details_additional_message')}</sub>
</Grid>
Expand Down

0 comments on commit 18eacc6

Please sign in to comment.