Skip to content

Commit b605f94

Browse files
Remove Console Logs
1 parent 9476800 commit b605f94

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/App.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ class App extends Component {
100100
const now = moment();
101101
const start = new Date(killSwitch.start_time);
102102
const end = new Date(killSwitch.end_time);
103-
console.log(end);
104103
const result = {
105104
start_time: start,
106105
end_time: end,

src/components/HistoryTable.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ class HistoryTable extends Component {
4747
})
4848
.then(response => response.json())
4949
.then((data) => {
50-
console.log(data);
5150
let { records } = data._embedded;
5251
records = records.map(e => ({
5352
created: e.confirmed,
@@ -72,7 +71,6 @@ class HistoryTable extends Component {
7271
})
7372
.then(response => response.json())
7473
.then((data) => {
75-
console.log(data);
7674
let { records } = data._embedded;
7775
if( records && records.length > 0) {
7876
records = records.map(e => ({

0 commit comments

Comments
 (0)