Skip to content

Commit

Permalink
Update mission deletion path
Browse files Browse the repository at this point in the history
  • Loading branch information
andchiind committed Aug 8, 2023
1 parent f564efe commit c984833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/api/ApiCaller.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ export class BackendAPICaller {
}

static async deleteMission(missionId: string) {
const path: string = 'missions/' + missionId
const path: string = 'missions/runs/' + missionId
await BackendAPICaller.DELETE(path, '').catch((e) => {
console.error(`Failed to DELETE /${path}: ` + e)
throw e
Expand Down

0 comments on commit c984833

Please sign in to comment.