diff --git a/apps/portal/src/components/questions/CommentListItem.tsx b/apps/portal/src/components/questions/CommentListItem.tsx index 1cf87d50..1da9c7de 100644 --- a/apps/portal/src/components/questions/CommentListItem.tsx +++ b/apps/portal/src/components/questions/CommentListItem.tsx @@ -28,7 +28,7 @@ export default function CommentListItem({ src={authorImageUrl}>
- Posted on: {format(createdAt, 'Pp')} + Posted on: {format(createdAt, 'h:mm a, MMMM dd, yyyy')}
{content}
diff --git a/apps/portal/src/components/questions/card/AnswerCard.tsx b/apps/portal/src/components/questions/card/AnswerCard.tsx index 16088f3c..3e91fcf2 100644 --- a/apps/portal/src/components/questions/card/AnswerCard.tsx +++ b/apps/portal/src/components/questions/card/AnswerCard.tsx @@ -32,7 +32,7 @@ function AnswerCardWithoutHref({ src={authorImageUrl}>- Posted on: {format(createdAt, 'Pp')} + Posted on: {format(createdAt, 'h:mm a, MMMM dd, yyyy')}
{content}
diff --git a/apps/portal/src/components/questions/card/FullAnswerCard.tsx b/apps/portal/src/components/questions/card/FullAnswerCard.tsx index 74282c77..42f4c82c 100644 --- a/apps/portal/src/components/questions/card/FullAnswerCard.tsx +++ b/apps/portal/src/components/questions/card/FullAnswerCard.tsx @@ -28,7 +28,7 @@ export default function FullAnswerCard({ src={authorImageUrl}>- Posted on: {format(createdAt, 'Pp')} + Posted on: {format(createdAt, 'h:mm a, MMMM dd, yyyy')}
{content}