diff --git a/src/api/worktype.api.js b/src/api/worktype.api.js index 0af2ea0..fd14605 100644 --- a/src/api/worktype.api.js +++ b/src/api/worktype.api.js @@ -35,5 +35,5 @@ export function updateWorktype(uuid, color) { * @param {string} uuid - worktype unique identifier */ export function deleteWorktype(uuid) { - return del(`/worktype/${uuid}`).then(resp => Promise.resolve(resp)); + return del(`/worktype/${uuid}/`).then(resp => Promise.resolve(resp)); }