xhr.onreadystatechange = function()

in src/services/report.ts [62:66]


    xhr.onreadystatechange = function () {
      if (xhr.readyState === 4 && xhr.status < 400) {
        console.log('Report successfully');
      }
    };