diff --git a/components/TradeHistoryTable.tsx b/components/TradeHistoryTable.tsx index d2f655e..a34eebe 100644 --- a/components/TradeHistoryTable.tsx +++ b/components/TradeHistoryTable.tsx @@ -2,12 +2,13 @@ import useTradeHistory from '../hooks/useTradeHistory' const TradeHistoryTable = () => { const { tradeHistory } = useTradeHistory() + console.log('trade history', tradeHistory) return (
- {tradeHistory ? ( + {tradeHistory && tradeHistory.length ? (