File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 => ( {
You can’t perform that action at this time.
0 commit comments