From e12bb6cf4bc466a2c716989c71e8f0e5354787b4 Mon Sep 17 00:00:00 2001 From: rderfler <44448965+rderfler@users.noreply.github.com> Date: Sat, 30 Apr 2022 15:31:36 -0400 Subject: [PATCH] Make lint happy --- src/Faction/ui/FactionRoot.tsx | 5 +---- src/index.tsx | 1 - 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/Faction/ui/FactionRoot.tsx b/src/Faction/ui/FactionRoot.tsx index 4410e5bdb..bcb37a563 100644 --- a/src/Faction/ui/FactionRoot.tsx +++ b/src/Faction/ui/FactionRoot.tsx @@ -16,12 +16,10 @@ import { BitNodeMultipliers } from "../../BitNode/BitNodeMultipliers"; import { Faction } from "../Faction"; import { use } from "../../ui/Context"; -import { CreateGangModal } from "./CreateGangModal"; -import { Box, Paper, Typography, Button, Tooltip } from "@mui/material"; +import { Typography, Button } from "@mui/material"; import { CovenantPurchasesRoot } from "../../PersonObjects/Sleeve/ui/CovenantPurchasesRoot"; import { FactionNames } from "../data/FactionNames"; -import { GangConstants } from "../../Gang/data/Constants"; import { GangButton } from "./GangButton"; type IProps = { @@ -30,7 +28,6 @@ type IProps = { }; // Info text for all options on the UI -const gangInfo = "Create and manage a gang for this Faction. Gangs will earn you money and faction reputation"; const hackingContractsInfo = "Complete hacking contracts for your faction. " + "Your effectiveness, which determines how much " + diff --git a/src/index.tsx b/src/index.tsx index 38aba9a58..db30c785c 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -4,7 +4,6 @@ import ReactDOM from "react-dom"; import { TTheme as Theme, ThemeEvents, refreshTheme } from "./Themes/ui/Theme"; import { LoadingScreen } from "./ui/LoadingScreen"; import { initElectron } from "./Electron"; -import { AlertEvents } from "./ui/React/AlertManager"; initElectron(); globalThis["React"] = React; globalThis["ReactDOM"] = ReactDOM;