From 57c39048dab0f19ee5bbe9d9f65b1cc8d2796d04 Mon Sep 17 00:00:00 2001 From: hanif salafi Date: Mon, 3 Mar 2025 12:32:19 +0700 Subject: [PATCH] feat: update category spit --- service/content/content.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/content/content.ts b/service/content/content.ts index 5192e2dd..d055655d 100644 --- a/service/content/content.ts +++ b/service/content/content.ts @@ -155,7 +155,7 @@ export async function listEnableCategory(type: any) { } export async function listCategory(type: any) { - const url = `media/categories/list/publish?enablePage=0&sort=desc&sortBy=id&categoryId=${type}`; + const url = `media/categories/list?enablePage=0&sort=desc&sortBy=id&categoryId=${type}`; return httpGetInterceptor(url); }