diff --git a/View/src/JS/dashboard.js b/View/src/JS/dashboard.js index 4c6ca5ff..88794fdc 100644 --- a/View/src/JS/dashboard.js +++ b/View/src/JS/dashboard.js @@ -4,7 +4,7 @@ xhr.responseType = 'text'; xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); var playersEmail = xhr.onload = function () { - console.log(xhr.responseText); + console.log(xhr.responseText + "DONE"); return JSON.parse(xhr.responseText); }; xhr.send(null);