fix: ensure date is Date (#11)
This commit is contained in:
parent
cfd40d4db9
commit
38e944437a
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ function ItemCard(props: CardProps): ReactNode {
|
|||
const { title, url, published } = props
|
||||
const classes = useStyles()
|
||||
|
||||
const formattedDate = published.toLocaleString('en-GB', { timeZone: 'UTC' })
|
||||
const formattedDate = (new Date(published)).toLocaleString('en-GB', { timeZone: 'UTC' })
|
||||
return (
|
||||
<Card className={classes.root}>
|
||||
<a href={url}>{title}</a>
|
||||
|
|
Loading…
Reference in a new issue