diff --git a/client/src/components/game.tsx b/client/src/components/game.tsx
index 34262d1..0ea5283 100644
--- a/client/src/components/game.tsx
+++ b/client/src/components/game.tsx
@@ -101,7 +101,7 @@ function Game() {
{<>
{ worldId ?
- (levelId > 0 && ) :
+ :
}
@@ -113,7 +113,7 @@ function Game() {
{/* Note: apparently without this `div` the split panel bugs out. */}
- {worldId ? (levelId > 0 && ) : }
+ {worldId ? : }
diff --git a/client/src/components/level.tsx b/client/src/components/level.tsx
index 88d3346..6bdc1a4 100644
--- a/client/src/components/level.tsx
+++ b/client/src/components/level.tsx
@@ -34,7 +34,6 @@ import { ChatContext, InputModeContext, PreferencesContext, MonacoEditorContext,
ProofContext, PageContext } from './infoview/context'
import { DualEditor, ExerciseStatement } from './infoview/main'
import { GameHint, InteractiveGoalsWithHints, ProofState } from './infoview/rpc_api'
-import { DeletedHints, Hints, MoreHelpButton } from './hints'
import path from 'path';
import '@fontsource/roboto/300.css'