Skip to content

Commit 9d761be

Browse files
fix: fix issue with Christmas Quiz not loading properly
1 parent cbc6ecb commit 9d761be

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pages/christmas/game.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
<link rel="stylesheet" href="../../css/index.css" />
1111
<link rel="stylesheet" href="../../css/game.css" />
1212
<script type="module" defer>
13-
import { xmas } from "../../js/data/index.js";
13+
import { xmasQA } from "../../js/data/index.js";
1414
import { Quiz } from "../../js/QuizClass.js";
1515

16-
const QuizInstance = new Quiz(xmas);
16+
const QuizInstance = new Quiz(xmasQA);
1717

1818
document.addEventListener("click", (e) => {
1919
if (e.target.dataset.number) {
@@ -59,4 +59,4 @@ <h1 id="question">What is the answer to this question</h1>
5959
</div>
6060
</body>
6161

62-
</html>
62+
</html>

0 commit comments

Comments
 (0)