From 7ce84920e2b8eebca004b73f8ad925361018ce86 Mon Sep 17 00:00:00 2001 From: "vluk@2fi-solutions.com.hk" Date: Sun, 18 Jan 2026 20:58:26 +0800 Subject: [PATCH] fixing the GET type --- src/app/(main)/ps/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(main)/ps/page.tsx b/src/app/(main)/ps/page.tsx index fc2a73e..9d42de6 100644 --- a/src/app/(main)/ps/page.tsx +++ b/src/app/(main)/ps/page.tsx @@ -87,7 +87,7 @@ export default function ProductionSchedulePage() { setLoading(true); try { const response = await fetch(`${NEXT_PUBLIC_API_URL}/productionSchedule/testDetailedSchedule`, { - method: 'POST', + method: 'GET', headers: { 'Authorization': `Bearer ${token}` } }); if (response.ok) {