Skip to content

Commit

Permalink
Update scripts/update-bq.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Charlie Andrews-Jubelt <cajubelt@users.noreply.github.com>
  • Loading branch information
MuckT and cajubelt authored Nov 7, 2023
1 parent 2a20ab3 commit 73e2620
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/update-bq.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const tokensInfo = getTokensInfoByNetworkIds([

const rows = Object.entries(tokensInfo).map(([_, tokenInfo]) => {
const row: Record<string, string | number | boolean | null> = {}
fieldsToKeep.forEach((field) => (row[field] = tokenInfo[field] || null))
fieldsToKeep.forEach((field) => (row[field] = tokenInfo[field] ?? null))
return row
})

Expand Down

0 comments on commit 73e2620

Please sign in to comment.