Fix email template update endpoint

This commit is contained in:
Andrew Kingston 2022-01-25 08:04:56 +00:00
parent 77de6a10cc
commit 0eb6ab388e
1 changed files with 1 additions and 3 deletions

View File

@ -20,9 +20,7 @@ export const buildTemplateEndpoints = API => ({
saveEmailTemplate: async template => {
return await API.post({
url: "/api/global/template",
body: {
template,
},
body: template,
})
},