This commit is contained in:
Rama Priyanto 2025-01-13 12:41:34 +07:00
commit 260da229da
2 changed files with 2 additions and 2 deletions

View File

@ -168,7 +168,7 @@ export async function uploadThumbnail(id: any, data: any) {
const headers = {
"Content-Type": "multipart/form-data",
};
return httpPostInterceptor(url, data, { headers });
return httpPostInterceptor(url, data, headers);
}
export async function detailSPIT(id: any) {

View File

@ -39,7 +39,7 @@ export async function postCategory(data: any) {
const headers = {
"Content-Type": "multipart/form-data",
};
return httpPostInterceptor(url, data, { headers });
return httpPostInterceptor(url, data, headers);
}
export async function getPrivacy(id: string) {