Remove logging for api requests

This commit is contained in:
Moka 2024-11-06 17:58:26 +01:00
parent 9dae28f264
commit e2402b0d87

View File

@ -69,8 +69,6 @@ export abstract class ApiBase {
"Content-Type": config.headers?.["Content-Type"] ?? "application/json",
};
console.log(`Sending ${config.method ?? "GET"} request to: `, this.base + path, config);
return await fetch(this.base + path, config);
}