diff --git a/src/PersonObjects/Sleeve/ui/SleeveAugmentationsModal.tsx b/src/PersonObjects/Sleeve/ui/SleeveAugmentationsModal.tsx index ee1f9e07e..52f441c29 100644 --- a/src/PersonObjects/Sleeve/ui/SleeveAugmentationsModal.tsx +++ b/src/PersonObjects/Sleeve/ui/SleeveAugmentationsModal.tsx @@ -1,6 +1,5 @@ -import { Box, Container, Paper, Tooltip, Typography } from "@mui/material"; +import { Container, Typography } from "@mui/material"; import React, { useEffect, useState } from "react"; -import { Augmentations } from "../../../Augmentation/Augmentations"; import { PurchaseableAugmentations } from "../../../Augmentation/ui/PurchaseableAugmentations"; import { use } from "../../../ui/Context"; import { Modal } from "../../../ui/React/Modal"; @@ -58,34 +57,6 @@ export function SleeveAugmentationsModal(props: IProps): React.ReactElement { skipPreReqs skipExclusiveIndicator /> - - {ownedAugNames.length > 0 && ( - <> - Owned Augmentations: - - {ownedAugNames.map((augName) => { - const aug = Augmentations[augName]; - const info = typeof aug.info === "string" ? {aug.info} : aug.info; - const tooltip = ( - <> - {info} -
-
- {aug.stats} - - ); - - return ( - {tooltip}}> - - {augName} - - - ); - })} -
- - )} );