diff --git a/client/src/components/level.tsx b/client/src/components/level.tsx
index 1246398..859711c 100644
--- a/client/src/components/level.tsx
+++ b/client/src/components/level.tsx
@@ -214,7 +214,7 @@ function PlayableLevel({impressum, setImpressum}) {
const typewriterMode = useSelector(selectTypewriterMode(gameId))
const setTypewriterMode = (newTypewriterMode: boolean) => dispatch(changeTypewriterMode({game: gameId, typewriterMode: newTypewriterMode}))
- const gameInfo = useGetGameInfoQuery({game: gameId})
+ const gameInfo = useGetGameInfoQuery({game: gameId})
const level = useLoadLevelQuery({game: gameId, world: worldId, level: levelId})
// The state variables for the `ProofContext`
@@ -488,7 +488,8 @@ function Introduction({impressum, setImpressum}) {