mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 06:18:42 +02:00
UI: Remove unnecessary newlines when augmentation does not have stats (#1698)
This commit is contained in:
@@ -168,9 +168,13 @@ export function PurchasableAugmentation(props: IPurchasableAugProps): React.Reac
|
||||
const description = (
|
||||
<>
|
||||
{info}
|
||||
<br />
|
||||
<br />
|
||||
{aug.stats}
|
||||
{aug.stats && (
|
||||
<>
|
||||
<br />
|
||||
<br />
|
||||
{aug.stats}
|
||||
</>
|
||||
)}
|
||||
</>
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user