From 363306c98e959be57703c3e1d6bf7ef75094c63e Mon Sep 17 00:00:00 2001 From: "vluk@2fi-solutions.com.hk" Date: Sun, 18 Jan 2026 23:54:35 +0800 Subject: [PATCH] fixing the ps export path --- 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 9d42de6..2c163d5 100644 --- a/src/app/(main)/ps/page.tsx +++ b/src/app/(main)/ps/page.tsx @@ -104,7 +104,7 @@ export default function ProductionSchedulePage() { const handleExport = async () => { const token = localStorage.getItem("accessToken"); try { - const response = await fetch(`${NEXT_PUBLIC_API_URL}/ps/export-prod-schedule`, { + const response = await fetch(`${NEXT_PUBLIC_API_URL}/productionSchedule/export-prod-schedule`, { method: 'POST', headers: { 'Authorization': `Bearer ${token}` } });