Skip to content

Commit 7fb14d0

Browse files
committed
fixing warnings
1 parent ef4f6e0 commit 7fb14d0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/challengeView/SceneButtons/Execute.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Button, darken, IconButton, Stack, Tooltip } from "@mui/material"
1+
import { Button, IconButton, Stack, Tooltip } from "@mui/material"
22
import { scene } from "../scene"
33
import { interpreterFactory } from "./interpreterFactory"
44
import Interpreter from "js-interpreter"
@@ -19,7 +19,7 @@ type ExecuteButtonProps = {
1919

2020
export const ExecuteButton = ({ challenge, running, setRunning, step }: ExecuteButtonProps) => {
2121

22-
const { isSmallScreen, theme } = useThemeContext()
22+
const { isSmallScreen } = useThemeContext()
2323
const [showModal, setShowModal] = useState(false)
2424
const [finishedExecution, setFinishedExecution] = useState(false)
2525
const { t } = useTranslation('challenge')

0 commit comments

Comments
 (0)