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.
2 parents 85d595a + ab3c8a1 commit 7934cdbCopy full SHA for 7934cdb
src/Webflow.js
@@ -91,7 +91,7 @@ export default class Webflow {
91
// Generic HTTP request handlers
92
93
get(path, query = {}) {
94
- return this.authenticatedFetch('GET', path, false, query);
+ return this.authenticatedFetch('GET', path, null, query);
95
}
96
97
post(path, data, query = {}) {
@@ -107,7 +107,7 @@ export default class Webflow {
107
108
109
delete(path, query = {}) {
110
- return this.authenticatedFetch('DELETE', path, query);
+ return this.authenticatedFetch('DELETE', path, null, query);
111
112
113
// Meta
0 commit comments