We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db0bf1f commit 26a3de5Copy full SHA for 26a3de5
.gitignore
@@ -27,6 +27,7 @@ yarn-error.log*
27
28
# local env files
29
.env*.local
30
+.env*
31
32
# vercel
33
.vercel
src/components/common/table/Table.tsx
@@ -175,7 +175,6 @@ function Table(props: tableDataT) {
175
<td className="">
176
177
{ target.length > 0 && target.map((item, index) => {
178
- console.log('target from table', target)
179
return (
180
<Token key={index} text={item} type="address" />
181
)
0 commit comments