Skip to content

Commit

Permalink
don't wrap dates in quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
kbravh committed Dec 5, 2022
1 parent ee5629c commit f3993d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -450,8 +450,8 @@ export const buildMarkdown = async (
`author: "${user.name}"`,
`handle: "@${user.username}"`,
`source: "https://twitter.com/${user.username}/status/${tweet.data.id}"`,
`date: "${date}"`,
`fetched: "${fetchedAt}"`,
`date: ${date}`,
`fetched: ${fetchedAt}`,
...metrics,
]
)
Expand Down

0 comments on commit f3993d5

Please sign in to comment.