Skip to content

Commit

Permalink
Removed console log
Browse files Browse the repository at this point in the history
  • Loading branch information
Mister-Mario committed Apr 15, 2024
1 parent ccfd483 commit 18636fe
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion webapp/src/components/HistoricalData/HistoricalView.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export default function HistoricalView() {
var jsonRecords = await retriever.getRecords(user.username);
var recordsArray = jsonRecords.games;
setRecords(recordsArray);
console.log(recordsArray)
} catch (error) {
console.log(error);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ class HistoryRecordRetriever{
}

async getRecords(user) {
console.log(user)
try {
const response = await axios.get(this.apiUrl + '/' + user);
const receivedRecords = await response.data;
Expand Down

0 comments on commit 18636fe

Please sign in to comment.