xhr.onreadystatechange = function()

in src/services/report.ts [61:65]


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