Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
michelle0927 committed Sep 17, 2024
1 parent 5773434 commit e128744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/notion/sources/updated-page/updated-page.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default {
const properties = await this.getProperties();
const pagesStream = this.notion.getPages(this.databaseId, params);

for await (const page of pagesStream) { console.log(page);
for await (const page of pagesStream) {
newLastUpdatedTimestamp = Math.max(
newLastUpdatedTimestamp,
Date.parse(page?.last_edited_time),
Expand Down

0 comments on commit e128744

Please sign in to comment.