Skip to content

Commit

Permalink
fix: remove extraneous slash
Browse files Browse the repository at this point in the history
  • Loading branch information
chloeelim committed Nov 15, 2023
1 parent d391ee0 commit dda9f92
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 dda9f92

Please sign in to comment.