fix:delete artocle categories

This commit is contained in:
Rama Priyanto 2026-02-06 14:23:11 +07:00
parent adcae589f0
commit e235b86c12
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ export async function deleteCategory(id: number) {
"content-type": "application/json",
Authorization: `Bearer ${token}`,
};
return await httpPut(`article-categories/delete/${id}`, headers);
return await httpDeleteInterceptor(`article-categories/${id}`, headers);
}
export async function uploadCategoryThumbnail(id: string, data: any) {