fix trade volume alert

This commit is contained in:
tjs 2023-02-13 22:54:15 -05:00
parent 57f927fc15
commit d096ec3d0a
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ const RecentTrades = () => {
useEffect(() => {
if (!fills.length) return
if (!latestFillId) {
setLatestFillId(fills[0].orderId.toString())
setLatestFillId(fills[0]?.orderId?.toString())
}
}, [fills])