UI: Remove unnecessary newlines when augmentation does not have stats (#1698)

This commit is contained in:
catloversg 2024-10-20 15:09:30 +07:00 committed by GitHub
parent 424ae160ba
commit cc4c6d150b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -168,10 +168,14 @@ export function PurchasableAugmentation(props: IPurchasableAugProps): React.Reac
const description = ( const description = (
<> <>
{info} {info}
{aug.stats && (
<>
<br /> <br />
<br /> <br />
{aug.stats} {aug.stats}
</> </>
)}
</>
); );
return ( return (