Skip to content

Commit 43193fa

Browse files
committed
fix date formatting on posts
1 parent 3a81198 commit 43193fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Post.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ const Post = ({relay, post}: Props) => {
367367

368368
<Box direction="row" justify="between">
369369
<Text size="xsmall">
370-
{formatDate(new Date(post.createdAt), 'MMM eo, yyyy')}
370+
{formatDate(new Date(post.createdAt), 'MMM do, yyyy')}
371371
</Text>
372372
<Text size="xsmall">
373373
<Link to={`/post/${post.number}#comments`}>view comments</Link>

0 commit comments

Comments
 (0)