diff --git a/src/PersonObjects/Sleeve/ui/StatsElement.tsx b/src/PersonObjects/Sleeve/ui/StatsElement.tsx index 55f86f4cc..8467e954a 100644 --- a/src/PersonObjects/Sleeve/ui/StatsElement.tsx +++ b/src/PersonObjects/Sleeve/ui/StatsElement.tsx @@ -169,26 +169,22 @@ export function EarningsElement(props: IProps): React.ReactElement { } return ( - - - - - - Earnings {props.sleeve.storedCycles > 50 ? "(Boosted by bonus time)" : ""} - - - - {data.map(([a, b]) => ( - - - {a} - - - {b} - - - ))} - -
+ <> + Earnings {props.sleeve.storedCycles > 50 ? "(boosted by bonus time)" : ""} + + + {data.map(([a, b]) => ( + + + {a} + + + {b} + + + ))} + +
+ ); }