1
0
Fork 0
mirror of synced 2024-10-01 17:47:46 +13:00

Fix email template update endpoint

This commit is contained in:
Andrew Kingston 2022-01-25 08:04:56 +00:00
parent 5fa51005cf
commit a8f9138001

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,
})
},