feat(Debug): Removendo debug

This commit is contained in:
Kenio 2025-09-12 17:29:59 -03:00
parent b936df520a
commit 025dd6a0c2

View file

@ -45,8 +45,6 @@ export default class API {
// Verifica se existe body para envio
const filteredBody = _data.body ? Object.fromEntries(Object.entries(_data.body).filter(([_, v]) => v != null && v !== "")) : null;
console.log("URL:: " + `${this.ApiSchema.url}${this.ApiSchema.prefix}/${this.ApiSchema.endpoint}`)
// Realiza a requisição
const response = await fetch(`${this.ApiSchema.url}${this.ApiSchema.prefix}/${this.ApiSchema.endpoint}`, {
method: _data.method,