diff --git a/index.html b/index.html
index 4a7f4f6..7b07292 100644
--- a/index.html
+++ b/index.html
@@ -435,7 +435,7 @@ async function selectTopic(slug) {
currentQuestions = [];
for (const typeFile of meta.question_files) {
- const qRes = await fetch(`${topicPath}/${typeFile}.json`);
+ const qRes = await fetch(`${topicPath}/${typeFile}`);
const qData = await qRes.json();
currentQuestions.push(...qData.questions);
}