diff --git a/frontend/services/backend.ts b/frontend/services/backend.ts index 8ad0c3b..9797bc7 100644 --- a/frontend/services/backend.ts +++ b/frontend/services/backend.ts @@ -449,7 +449,6 @@ export const HybridBackend = { salvarAgendamento: async (ag: Partial) => { const res = await apiFetch(`${API_URL}/agendamentos`, { method: 'POST', - , body: JSON.stringify(ag) }); if (!res.ok) { @@ -462,7 +461,6 @@ export const HybridBackend = { atualizarAgendamento: async (id: string, data: Partial) => { const res = await apiFetch(`${API_URL}/agendamentos/${id}`, { method: 'PUT', - , body: JSON.stringify(data) }); if (!res.ok) {