diff options
Diffstat (limited to 'lib/rfqs/tbe-table/vendor-contact/vendor-contact-table-column.tsx')
| -rw-r--r-- | lib/rfqs/tbe-table/vendor-contact/vendor-contact-table-column.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rfqs/tbe-table/vendor-contact/vendor-contact-table-column.tsx b/lib/rfqs/tbe-table/vendor-contact/vendor-contact-table-column.tsx index fcd0c3fb..efc395b4 100644 --- a/lib/rfqs/tbe-table/vendor-contact/vendor-contact-table-column.tsx +++ b/lib/rfqs/tbe-table/vendor-contact/vendor-contact-table-column.tsx @@ -55,7 +55,7 @@ export function getColumns(): ColumnDef<VendorData>[] { header: ({ column }) => ( <ClientDataTableColumnHeaderSimple column={column} title="Created At" /> ), - cell: ({ cell }) => formatDate(cell.getValue() as Date), + cell: ({ cell }) => formatDate(cell.getValue() as Date, "KR"), }, // Updated At @@ -64,7 +64,7 @@ export function getColumns(): ColumnDef<VendorData>[] { header: ({ column }) => ( <ClientDataTableColumnHeaderSimple column={column} title="Updated At" /> ), - cell: ({ cell }) => formatDate(cell.getValue() as Date), + cell: ({ cell }) => formatDate(cell.getValue() as Date, "KR"), }, ] }
\ No newline at end of file |
