From 2af0fb0cb11cd8b84d99f453408b73dcfaf850e3 Mon Sep 17 00:00:00 2001 From: Mati Dastugue Date: Fri, 18 Dec 2020 10:44:04 -0300 Subject: [PATCH] Update index.tsx --- src/routes/safe/components/Transactions/TxsTable/index.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/routes/safe/components/Transactions/TxsTable/index.tsx b/src/routes/safe/components/Transactions/TxsTable/index.tsx index f1a66386..0e5b2687 100644 --- a/src/routes/safe/components/Transactions/TxsTable/index.tsx +++ b/src/routes/safe/components/Transactions/TxsTable/index.tsx @@ -38,10 +38,6 @@ const TxsTable = (): React.ReactElement => { trackEvent({ category: SAFE_NAVIGATION_EVENT, action: 'Transactions' }) }, [trackEvent]) - useEffect(() => { - console.log('La coupeeeee') - }, []) - const handleTxExpand = (rowId) => { setExpandedTx((prevRowId) => (prevRowId === rowId ? null : rowId)) }