From 7b26280ae92ddcb62c5b48b66a6f13607c089c7e Mon Sep 17 00:00:00 2001 From: Jon Eugster Date: Sat, 7 Oct 2023 22:07:02 +0200 Subject: [PATCH] rename commandline to typewriter #107 --- client/src/components/app_bar.tsx | 17 +++++----- .../src/components/infoview/command_line.tsx | 32 +++++++++---------- client/src/components/infoview/context.ts | 16 +++++----- client/src/components/infoview/goals.tsx | 16 +++++----- client/src/components/infoview/info.tsx | 4 +-- client/src/components/infoview/infoview.css | 18 +++++------ client/src/components/infoview/main.tsx | 32 +++++++++---------- client/src/components/infoview/messages.tsx | 12 +++---- client/src/components/level.css | 10 +++--- client/src/components/level.tsx | 24 +++++++------- 10 files changed, 91 insertions(+), 90 deletions(-) diff --git a/client/src/components/app_bar.tsx b/client/src/components/app_bar.tsx index 781489e..6b723d2 100644 --- a/client/src/components/app_bar.tsx +++ b/client/src/components/app_bar.tsx @@ -123,7 +123,7 @@ export function WelcomeAppBar({gameInfo, toggleImpressum, openEraseMenu, openUpl  Home */} @@ -291,7 +291,7 @@ export function LevelAppBar({ const difficulty = useSelector(selectDifficulty(gameId)) const completed = useAppSelector(selectCompleted(gameId, worldId, levelId)) - const { commandLineMode, setCommandLineMode } = React.useContext(InputModeContext) + const { typewriterMode, setTypewriterMode } = React.useContext(InputModeContext) const [navOpen, setNavOpen] = React.useState(false) @@ -341,9 +341,10 @@ export function LevelAppBar({  Home }