Skip to content

Commit a8a3b1c

Browse files
committed
fix: js
1 parent faa1ecc commit a8a3b1c

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/analysisWorker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class AnalysisWorker {
173173
if (job) {
174174
// Step 5: Emit final result
175175
const room = `project_${project_id}`;
176-
176+
177177
this.emitJobUpdate(project_id, 'finished', 'Job finished');
178178

179179
this.io.to(room).emit('analysis_complete', {

src/constants.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ JSON SCHEMA (STRICT — DO NOT MODIFY THE STRUCTURE):
3434
"parsed_at": "<ISO date>",
3535
"total_nodes_found": "number",
3636
"processed_nodes": "number",
37-
"repo": "${repo}",
38-
"branch": "${branch}"
37+
"repo": "repo",
38+
"branch": "branch"
3939
}
4040
}
4141

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ app.post('/analyze', async (req, res) => {
195195

196196
const repoName = repo;
197197
const branchName = branch || 'main';
198-
const analysisQuestion = questionPrompt ;
198+
const analysisQuestion = questionPrompt;
199199

200200
console.log(`Starting analysis for repository: ${repoName}, branch: ${branchName}`);
201201

0 commit comments

Comments
 (0)