From 023682ecfe2bef715aac987a1313e48924e40615 Mon Sep 17 00:00:00 2001 From: Memo Khoury Date: Fri, 10 Jan 2025 12:33:05 +0000 Subject: [PATCH] remov elog --- .../src/components/bridge/history/HistoryDesktop.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/webapps/world-builder-dashboard/src/components/bridge/history/HistoryDesktop.tsx b/webapps/world-builder-dashboard/src/components/bridge/history/HistoryDesktop.tsx index 9f9fb0fe..6782a6c8 100644 --- a/webapps/world-builder-dashboard/src/components/bridge/history/HistoryDesktop.tsx +++ b/webapps/world-builder-dashboard/src/components/bridge/history/HistoryDesktop.tsx @@ -39,7 +39,6 @@ const mergeTransactions = (apiData: TransactionRecord[], localData: TransactionR } }) const combinedDataArray = Array.from(combinedData.values()) - console.log(combinedDataArray) return combinedDataArray } @@ -116,7 +115,6 @@ const HistoryDesktop: React.FC = () => { }, [messages, apiTransactions]) const loadMoreItems = () => { - console.log('....loadig?!') setVisibleTransactions((prev) => { const nextItems = mergedTransactions.slice(prev.length, prev.length + 5) return [...prev, ...nextItems]