Skip to content

Commit 41c5f25

Browse files
committed
fix: removed logs
1 parent 7383e6a commit 41c5f25

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/stack/api/base.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default class Base {
6161
}
6262

6363
fetch(action: string, payload?: { [key: string]: any }) {
64-
console.log('fetch------->', action, payload);
64+
6565
const options = {
6666
payload,
6767
content_type_uid: this.constructor.contentTypeUid,
@@ -74,8 +74,6 @@ export default class Base {
7474
options.headers = payload.headers;
7575
}
7676

77-
console.log('options before cleanup------->', options);
78-
7977
if (!payload) { delete options.payload; }
8078
if (!this.constructor.contentTypeUid) { delete options.content_type_uid; }
8179
return this.constructor.connection.sendToParent('stackQuery', options)

0 commit comments

Comments
 (0)