Skip to content

Commit

Permalink
linting unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
kclark-scottlogic committed Feb 13, 2024
1 parent b86f029 commit ae12363
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/controller/testController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function handleTest(req: OpenAiAddInfoToChatHistoryRequest, res: Response) {
let num = 0
for(let x=0; x<= 1000000; x++)
{
num++;
num = num++;
}
handleAddInfoToChatHistory(req, res);
}
Expand Down

0 comments on commit ae12363

Please sign in to comment.