We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46b94fa commit 14d45a8Copy full SHA for 14d45a8
1 file changed
app.js
@@ -126,7 +126,7 @@ class TheInterviewCodeApp {
126
127
// Load DSA Questions from blind75_questions.json
128
try {
129
- const dsaResp = await fetch('/blind75_questions.json');
+ const dsaResp = await fetch('blind75_questions.json');
130
this.dsaQuestions = await dsaResp.json();
131
} catch (err) {
132
console.error('Failed to load DSA questions:', err);
@@ -135,7 +135,7 @@ class TheInterviewCodeApp {
135
136
// Load ML Questions from ml_100_questions.json
137
138
- const mlResp = await fetch('/ml_100_questions.json');
+ const mlResp = await fetch('ml_100_questions.json');
139
const mlData = await mlResp.json();
140
// Add slugs to ML questions if they don't have them
141
this.mlQuestions = mlData.map(q => ({
0 commit comments