Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
dan1M committed Oct 31, 2024
1 parent ef63411 commit c8d3952
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion actions/airtable-procedures-urls/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@ const getAirtableUrls = async (
link: record.fields[field_names.link]
? record.fields[field_names.link].replaceAll("\n", "").trim()
: "",
updownToken: updownUrls.find((item) => item.alias === record.fields[field_names.id])?.token || "not_found(" + updownUrls.map(item => item.alias).join() + ")",
updownToken: updownUrls.find((item) => {
console.debug(item.alias, record.fields[field_names.id]);
return item.alias === record.fields[field_names.id]
})?.token || "not_found",
startDate,
endDate,
}))
Expand Down

0 comments on commit c8d3952

Please sign in to comment.