pl-fe: CryptoDonateModal: remove unneeded wrapper

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2024-09-22 00:20:20 +02:00
parent dc7c759cf4
commit a842368eef

View file

@ -11,9 +11,7 @@ const CryptoDonateModal: React.FC<BaseModalProps & ICryptoAddress> = ({ onClose,
return (
<Modal onClose={onClose} width='xs'>
<div className='crypto-donate-modal'>
<DetailedCryptoAddress {...props} />
</div>
<DetailedCryptoAddress {...props} />
</Modal>
);