summaryrefslogtreecommitdiff
path: root/components/pq
diff options
context:
space:
mode:
Diffstat (limited to 'components/pq')
-rw-r--r--components/pq/pq-review-detail.tsx4
-rw-r--r--components/pq/pq-review-table.tsx2
2 files changed, 3 insertions, 3 deletions
diff --git a/components/pq/pq-review-detail.tsx b/components/pq/pq-review-detail.tsx
index e636caae..4f897a2b 100644
--- a/components/pq/pq-review-detail.tsx
+++ b/components/pq/pq-review-detail.tsx
@@ -447,7 +447,7 @@ export default function VendorPQAdminReview({
</div>
<p className="text-sm mt-1">{comment.comment}</p>
<p className="text-xs text-muted-foreground mt-1">
- {formatDate(comment.createdAt)}
+ {formatDate(comment.createdAt, "KR")}
</p>
</div>
<Button
@@ -847,7 +847,7 @@ function ItemCommentButton({ item, onCommentAdded }: ItemCommentButtonProps) {
<p className="font-medium">{log.reviewerName}</p>
<p>{log.reviewerComment}</p>
<p className="text-xs text-muted-foreground">
- {formatDate(log.createdAt)}
+ {formatDate(log.createdAt, "KR")}
</p>
</div>
))}
diff --git a/components/pq/pq-review-table.tsx b/components/pq/pq-review-table.tsx
index 08b4de61..ce30bac0 100644
--- a/components/pq/pq-review-table.tsx
+++ b/components/pq/pq-review-table.tsx
@@ -313,7 +313,7 @@ function ItemReviewButton({ answerId, checkPoint, onCommentAdded }: ItemReviewBu
<p className="font-medium">{log.reviewerName}</p>
<p>{log.reviewerComment}</p>
<p className="text-xs text-muted-foreground">
- {formatDate(log.createdAt)}
+ {formatDate(log.createdAt, "KR")}
</p>
</div>
))