diff --git a/src/Casino/CoinFlip.tsx b/src/Casino/CoinFlip.tsx index 32fdae274..67f4ef5fc 100644 --- a/src/Casino/CoinFlip.tsx +++ b/src/Casino/CoinFlip.tsx @@ -1,8 +1,3 @@ -/** - * React Subcomponent for displaying a location's UI, when that location is a gym - * - * This subcomponent renders all of the buttons for training at the gym - */ import React, { useState } from "react"; import { BadRNG } from "./RNG"; diff --git a/src/DevMenu/ui/EntropyDev.tsx b/src/DevMenu/ui/EntropyDev.tsx index d247b845d..7b00bb8bd 100644 --- a/src/DevMenu/ui/EntropyDev.tsx +++ b/src/DevMenu/ui/EntropyDev.tsx @@ -9,8 +9,6 @@ import Typography from "@mui/material/Typography"; import { Player } from "@player"; import { Adjuster } from "./Adjuster"; -// TODO: Update as additional BitNodes get implemented - export function EntropyDev(): React.ReactElement { return ( diff --git a/src/Locations/ui/CasinoLocation.tsx b/src/Locations/ui/CasinoLocation.tsx index 0dd021483..a33cc40a8 100644 --- a/src/Locations/ui/CasinoLocation.tsx +++ b/src/Locations/ui/CasinoLocation.tsx @@ -1,8 +1,3 @@ -/** - * React Subcomponent for displaying a location's UI, when that location is a gym - * - * This subcomponent renders all of the buttons for training at the gym - */ import React, { useState } from "react"; import Button from "@mui/material/Button"; import { Blackjack, DECK_COUNT } from "../../Casino/Blackjack"; diff --git a/src/Terminal/commands/common/editor.ts b/src/Terminal/commands/common/editor.ts index fa1bc1ee6..bbae03ad7 100644 --- a/src/Terminal/commands/common/editor.ts +++ b/src/Terminal/commands/common/editor.ts @@ -8,8 +8,6 @@ import { getGlobbedFileMap } from "../../../Paths/GlobbedFiles"; import { sendDeprecationNotice } from "./deprecation"; import { getFileType, getFileTypeFeature } from "../../../utils/ScriptTransformer"; -// 2.3: Globbing implementation was removed from this file. Globbing will be reintroduced as broader functionality and integrated here. - interface EditorParameters { args: (string | number | boolean)[]; server: BaseServer; diff --git a/src/ui/Components/Requirement.tsx b/src/ui/Components/Requirement.tsx index 29db8d91e..5b11ffac1 100644 --- a/src/ui/Components/Requirement.tsx +++ b/src/ui/Components/Requirement.tsx @@ -3,8 +3,6 @@ import { Typography } from "@mui/material"; import React from "react"; import { Settings } from "../../Settings/Settings"; -Settings.theme.primary; - export interface IReqProps { value: string; color?: string;