From 4bf6acf95cf7d94c091f406aa70e64c2d2f00a36 Mon Sep 17 00:00:00 2001 From: nickofolas Date: Sun, 24 Apr 2022 14:54:43 -0500 Subject: [PATCH] Update Cheat Code Game --- src/Infiltration/ui/CheatCodeGame.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Infiltration/ui/CheatCodeGame.tsx b/src/Infiltration/ui/CheatCodeGame.tsx index f0974a3bc..e7b356369 100644 --- a/src/Infiltration/ui/CheatCodeGame.tsx +++ b/src/Infiltration/ui/CheatCodeGame.tsx @@ -13,9 +13,9 @@ import { downArrowSymbol, } from "../utils"; import { interpolate } from "./Difficulty"; -import Typography from "@mui/material/Typography"; import { AugmentationNames } from "../../Augmentation/data/AugmentationNames"; import { Player } from "../../Player"; +import { Paper, Typography, Box } from "@mui/material"; interface Difficulty { [key: string]: number; @@ -55,14 +55,14 @@ export function CheatCodeGame(props: IMinigameProps): React.ReactElement { } return ( - + <> - + Enter the Code! {code[index]} - - + + ); }