Skip to content

Commit 46eb22a

Browse files
committed
updates
1 parent 42a483b commit 46eb22a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/attio/common/utils.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async function *paginate({
1414
args = {
1515
...args,
1616
params: {
17-
...args.params,
17+
...args.params ?? {},
1818
limit: 500,
1919
offset: 0,
2020
},
@@ -33,7 +33,7 @@ async function *paginate({
3333
} while (total === args.params.limit);
3434
}
3535

36-
function parseValues(attributes, values) { console.log(attributes);
36+
function parseValues(attributes, values) {
3737
for (const [
3838
key,
3939
value,

components/attio/sources/new-list-entry-instant/new-list-entry-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import common from "../common/base.mjs";
2-
import sampleEmit from "./test-event";
2+
import sampleEmit from "./test-event.mjs";
33

44
export default {
55
...common,

0 commit comments

Comments
 (0)