Skip to content

Commit

Permalink
fix: removed test code
Browse files Browse the repository at this point in the history
  • Loading branch information
arazaki committed Dec 6, 2024
1 parent 6955d55 commit 32ec5c3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/trades/Trades.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ const TradeRow: FC<{ trade: TTrade }> = ({ trade }) => {
const Trades: FC = () => {
const { trades, isLoading } = useGetTrades()

console.log("First 10 trades", JSON.stringify(trades.slice(0, 10), null, 2))

const groupedTrades = useMemo(() => {
return trades.reduce((acc, trade) => {
const date = new Date(trade.createdAt).toLocaleDateString("en-US", {
Expand Down

0 comments on commit 32ec5c3

Please sign in to comment.