comment console.log

This commit is contained in:
2021-09-29 11:16:18 +02:00
parent 3040ed9483
commit a26d278510
4 changed files with 7 additions and 7 deletions

View File

@@ -4,9 +4,9 @@ const fetchScopes = () => {
return response.json();
}
}).then(data => {
console.log(data);
//console.log(data);
return new Promise((resolve, reject) => {
console.log(data);
//console.log(data);
resolve(data.results);
});
});