Ver código fonte

fixing the ps export path

MergeProblem1
[email protected] 2 semanas atrás
pai
commit
363306c98e
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/app/(main)/ps/page.tsx

+ 1
- 1
src/app/(main)/ps/page.tsx Ver arquivo

@@ -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}` }
});


Carregando…
Cancelar
Salvar