Skip to content

Commit 2324a0e

Browse files
committed
refactor(ui): app refactor and log deletions
1 parent beaf325 commit 2324a0e

File tree

8 files changed

+0
-3
lines changed

8 files changed

+0
-3
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

services/ui/src/App.js renamed to services/ui/app/src/App.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,12 @@ class App extends Component {
99
}
1010

1111
callAPI(endpoint) {
12-
console.log(endpoint)
1312
fetch(`http://localhost:5000/${endpoint}`, {
1413
method: 'get'
1514
})
1615
.then((response) => {
17-
console.log(response)
1816
if (response.ok) {
1917
response.json().then(json => {
20-
console.log(json)
2118
this.setState({data: json})
2219
})
2320
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)