fix date formatting

This commit is contained in:
mmv 2019-07-09 18:36:53 +04:00
parent 39a6d35033
commit 5312bd2adf
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ type TxData = {
status?: string, status?: string,
} }
export const formatDate = (date: Date): string => format(date, 'MMM D, YYYY - h:m:s') export const formatDate = (date: Date): string => format(date, 'MMM D, YYYY - HH:mm:ss')
export type TransactionRow = SortRow<TxData> export type TransactionRow = SortRow<TxData>