We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7383e6a commit 41c5f25Copy full SHA for 41c5f25
src/stack/api/base.ts
@@ -61,7 +61,7 @@ export default class Base {
61
}
62
63
fetch(action: string, payload?: { [key: string]: any }) {
64
- console.log('fetch------->', action, payload);
+
65
const options = {
66
payload,
67
content_type_uid: this.constructor.contentTypeUid,
@@ -74,8 +74,6 @@ export default class Base {
74
options.headers = payload.headers;
75
76
77
- console.log('options before cleanup------->', options);
78
-
79
if (!payload) { delete options.payload; }
80
if (!this.constructor.contentTypeUid) { delete options.content_type_uid; }
81
return this.constructor.connection.sendToParent('stackQuery', options)
0 commit comments