We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca09fe4 commit af4d1cfCopy full SHA for af4d1cf
1 file changed
src/app/[username]/(profile-page)/articles/UserArticleFeed.tsx
@@ -28,6 +28,7 @@ const UserArticleFeed: React.FC<UserArticleFeedProps> = ({ userId }) => {
28
"handle",
29
"cover_image",
30
"body",
31
+ "published_at",
32
"created_at",
33
"excerpt",
34
]
@@ -73,7 +74,7 @@ const UserArticleFeed: React.FC<UserArticleFeedProps> = ({ userId }) => {
73
74
username: article?.user?.username ?? "",
75
is_verified: Boolean(article?.user?.is_verified),
76
}}
- publishedAt={article?.created_at?.toDateString() ?? ""}
77
+ publishedAt={article?.published_at?.toDateString() ?? ""}
78
readingTime={readingTime(article?.body ?? "")}
79
/>
80
))}
0 commit comments