Skip to content

Commit

Permalink
fix: convert id to string
Browse files Browse the repository at this point in the history
  • Loading branch information
dan1M committed Nov 7, 2024
1 parent f0b35fb commit 7a4c36a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/airtable-procedures-urls/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const getAirtableUrls = async (
link: record.fields[field_names.link]
? record.fields[field_names.link].replaceAll("\n", "").trim()
: "",
updownToken: updownUrls.find((item) => item.alias.split(";").includes(record.fields[field_names.id]))?.token || "not_found",
updownToken: updownUrls.find((item) => item.alias.split(";").includes('' + record.fields[field_names.id]))?.token || "not_found",
startDate,
endDate,
}))
Expand Down

0 comments on commit 7a4c36a

Please sign in to comment.