diff options
Diffstat (limited to 'react-frontend/src')
-rw-r--r-- | react-frontend/src/App.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/react-frontend/src/App.js b/react-frontend/src/App.js index 0a6e6c1..e242115 100644 --- a/react-frontend/src/App.js +++ b/react-frontend/src/App.js @@ -49,6 +49,7 @@ function App() { .then(res => res.json()) .then(data => { //TODO: optimize this + console.log(data.holders.length); const sliced = data.holders.slice(0, 500); console.log(sliced); setData(sliced); |