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,9 +168,13 @@ export function PurchasableAugmentation(props: IPurchasableAugProps): React.Reac
const description = (
<>
{info}
<br />
<br />
{aug.stats}
{aug.stats && (
<>
<br />
<br />
{aug.stats}
</>
)}
</>
);