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 42a483b commit 46eb22aCopy full SHA for 46eb22a
components/attio/common/utils.mjs
@@ -14,7 +14,7 @@ async function *paginate({
14
args = {
15
...args,
16
params: {
17
- ...args.params,
+ ...args.params ?? {},
18
limit: 500,
19
offset: 0,
20
},
@@ -33,7 +33,7 @@ async function *paginate({
33
} while (total === args.params.limit);
34
}
35
36
-function parseValues(attributes, values) { console.log(attributes);
+function parseValues(attributes, values) {
37
for (const [
38
key,
39
value,
components/attio/sources/new-list-entry-instant/new-list-entry-instant.mjs
@@ -1,5 +1,5 @@
1
import common from "../common/base.mjs";
2
-import sampleEmit from "./test-event";
+import sampleEmit from "./test-event.mjs";
3
4
export default {
5
...common,
0 commit comments