diff --git a/src/Infiltration/ui/Countdown.tsx b/src/Infiltration/ui/Countdown.tsx index 91878cd20..8b0659b86 100644 --- a/src/Infiltration/ui/Countdown.tsx +++ b/src/Infiltration/ui/Countdown.tsx @@ -1,7 +1,6 @@ import React, { useState, useEffect } from "react"; -import Grid from "@mui/material/Grid"; +import { Typography, Paper } from "@mui/material"; -import Typography from "@mui/material/Typography"; interface IProps { onFinish: () => void; } @@ -13,17 +12,13 @@ export function Countdown(props: IProps): React.ReactElement { props.onFinish(); return; } - setTimeout(() => setX(x - 1), 200); + setTimeout(() => setX(x - 1), 300); }); return ( - <> - - - Get Ready! - {x} - - - + + Get Ready! + {x} + ); }