diff --git a/src/Augmentation/ui/PurchasedAugmentations.tsx b/src/Augmentation/ui/PurchasedAugmentations.tsx
index be4d336f6..f3982f035 100644
--- a/src/Augmentation/ui/PurchasedAugmentations.tsx
+++ b/src/Augmentation/ui/PurchasedAugmentations.tsx
@@ -2,13 +2,11 @@
* React component for displaying all of the player's purchased (but not installed)
* Augmentations on the Augmentations UI.
*/
+import { List, ListItemText, Paper, Tooltip, Typography } from "@mui/material";
import * as React from "react";
-
+import { Player } from "../../Player";
import { Augmentations } from "../Augmentations";
import { AugmentationNames } from "../data/AugmentationNames";
-import { Player } from "../../Player";
-
-import { List, Paper, ListItemText, ListItem, Tooltip, Typography } from "@mui/material";
export function PurchasedAugmentations(): React.ReactElement {
const augs: React.ReactElement[] = [];
@@ -54,15 +52,13 @@ export function PurchasedAugmentations(): React.ReactElement {
enterNextDelay={500}
key={displayName}
>
-
-
-
+
,
);
}
return (
-
+
{augs}