Remove console.log from teams.js
This commit is contained in:
parent
0a6c56e103
commit
9c7241e7e6
1 changed files with 0 additions and 1 deletions
|
@ -69,7 +69,6 @@ async function getFromID(id) {
|
||||||
FROM scores.teams
|
FROM scores.teams
|
||||||
WHERE team_id = $1;`;
|
WHERE team_id = $1;`;
|
||||||
const row = (await database.executeQuery(query, [id]))[0];
|
const row = (await database.executeQuery(query, [id]))[0];
|
||||||
console.log(row);
|
|
||||||
return new Team(id, row[0], row[1]);
|
return new Team(id, row[0], row[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue