Skip to content

Commit 14d45a8

Browse files
authored
Update app.js
Updated file path
1 parent 46b94fa commit 14d45a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class TheInterviewCodeApp {
126126

127127
// Load DSA Questions from blind75_questions.json
128128
try {
129-
const dsaResp = await fetch('/blind75_questions.json');
129+
const dsaResp = await fetch('blind75_questions.json');
130130
this.dsaQuestions = await dsaResp.json();
131131
} catch (err) {
132132
console.error('Failed to load DSA questions:', err);
@@ -135,7 +135,7 @@ class TheInterviewCodeApp {
135135

136136
// Load ML Questions from ml_100_questions.json
137137
try {
138-
const mlResp = await fetch('/ml_100_questions.json');
138+
const mlResp = await fetch('ml_100_questions.json');
139139
const mlData = await mlResp.json();
140140
// Add slugs to ML questions if they don't have them
141141
this.mlQuestions = mlData.map(q => ({

0 commit comments

Comments
 (0)