diff --git a/src/Augmentation/ui/AugmentationsRoot.tsx b/src/Augmentation/ui/AugmentationsRoot.tsx index 35bf1d221..a40afd517 100644 --- a/src/Augmentation/ui/AugmentationsRoot.tsx +++ b/src/Augmentation/ui/AugmentationsRoot.tsx @@ -179,7 +179,7 @@ export function AugmentationsRoot(props: IProps): React.ReactElement { {player.queuedAugmentations.length > 0 ? ( - + diff --git a/src/Augmentation/ui/PlayerMultipliers.tsx b/src/Augmentation/ui/PlayerMultipliers.tsx index 7cb4d1877..2d5696c79 100644 --- a/src/Augmentation/ui/PlayerMultipliers.tsx +++ b/src/Augmentation/ui/PlayerMultipliers.tsx @@ -133,7 +133,7 @@ export function PlayerMultipliers(): React.ReactElement { } return ( - + + + ); + + augs.push( + + {(() => { + const info = typeof aug.info === "string" ? {aug.info} : aug.info; + const tooltip = ( + <> + {info} +
+
+ {aug.stats} + + ); + return tooltip; + })()} + + } + enterDelay={500} + > + + + +
, + ); } return ( - {augs} + + {augs} + ); }