diff options
Diffstat (limited to 'components/information')
| -rw-r--r-- | components/information/information-button.tsx | 2 | ||||
| -rw-r--r-- | components/information/information-client.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/components/information/information-button.tsx b/components/information/information-button.tsx index f8707439..5a9dc4d4 100644 --- a/components/information/information-button.tsx +++ b/components/information/information-button.tsx @@ -174,7 +174,7 @@ export function InformationButton({ {notice.title}
</h5>
<div className="flex items-center gap-3 text-xs text-gray-500">
- <span>{formatDate(notice.createdAt)}</span>
+ <span>{formatDate(notice.createdAt, "KR")}</span>
{notice.authorName && (
<span>{notice.authorName}</span>
)}
diff --git a/components/information/information-client.tsx b/components/information/information-client.tsx index 513b8f20..69835599 100644 --- a/components/information/information-client.tsx +++ b/components/information/information-client.tsx @@ -308,7 +308,7 @@ export function InformationClient({ initialData = [] }: InformationClientProps) </Badge>
</TableCell>
<TableCell>
- {formatDate(information.createdAt)}
+ {formatDate(information.createdAt, "KR")}
</TableCell>
<TableCell className="text-right">
<Button
|
