fix date component

This commit is contained in:
tjs 2022-03-24 15:52:42 -04:00
parent d5fbd5c428
commit 43fa225645
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ const formatTradeDateTime = (timestamp: BN | string) => {
if (typeof timestamp === 'string') {
return timestamp
} else {
return (timestamp.toNumber() * 1000).toString()
return timestamp.toNumber() * 1000
}
}