diff --git a/client/src/components/level.tsx b/client/src/components/level.tsx
index 24fc18d..5b28376 100644
--- a/client/src/components/level.tsx
+++ b/client/src/components/level.tsx
@@ -127,7 +127,7 @@ function ChatPanel({lastLevel, visible = true}) {
{introText?.filter(t => t.trim()).map(((t, i) =>
// Show the level's intro text as hints, too
+ hint={{text: t, hidden: false, rawText: t, varNames: []}} step={0} selected={selectedStep} toggleSelection={toggleSelection(0)} />
))}
{proof.steps.map((step, i) => {
let filteredHints = filterHints(step.goals[0]?.hints, proof?.steps[i-1]?.goals[0]?.hints)
@@ -427,7 +427,7 @@ function IntroductionPanel({gameInfo}) {
{text?.filter(t => t.trim()).map(((t, i) =>
+ hint={{text: t, hidden: false, rawText: t, varNames: []}} step={0} selected={null} toggleSelection={undefined} />
))}
diff --git a/tsconfig.json b/tsconfig.json
index 961d146..74359a4 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -12,7 +12,8 @@
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"lib": [
- "ES2021.String"
+ "ES2021.String",
+ "DOM"
]
},
"exclude": ["server", "relay"]