Skip to content

Commit

Permalink
Merge pull request #159 from CS3219-AY2324S1/final-touch-ups
Browse files Browse the repository at this point in the history
fix: remove extraneous slash
  • Loading branch information
chloeelim authored Nov 15, 2023
2 parents 28c6856 + dda9f92 commit 15ded04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/api/code/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default class ExecutorAPI {
}

public async getExecutorSubmissionData(token: string): Promise<ExecutorStatusData> {
const response = await codeExecutionServiceClient.get(`${this.getExecutorUrl()}/${token}`);
const response = await codeExecutionServiceClient.get(`${this.getExecutorUrl()}${token}`);
const submissionStatus = response.data as ExecutorStatusData;
return submissionStatus;
}
Expand Down

0 comments on commit 15ded04

Please sign in to comment.