diff options
author | Ernst Widerberg <ernstwi@kth.se> | 2021-10-15 12:50:22 +0200 |
---|---|---|
committer | Ernst Widerberg <ernstwi@kth.se> | 2021-10-15 12:50:22 +0200 |
commit | d09d529677e42a0130b6188dfd2a90f6a6f06b0c (patch) | |
tree | 9cd1e1c8cb91fa80735f42996728afb08fcb4e01 /src/components/List.js | |
parent | 25098aebd09acdd791a593506c8ab0835f1790aa (diff) |
Remove debug prints
Diffstat (limited to 'src/components/List.js')
-rw-r--r-- | src/components/List.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/components/List.js b/src/components/List.js index 558f1ab..80222db 100644 --- a/src/components/List.js +++ b/src/components/List.js @@ -86,7 +86,6 @@ class List extends React.Component { </div> <div id="main"> {this.state.objects.map(data => { - console.log(data); return <ObjectComponent {...data} key={data._id} />; })} </div> |