Fix logging for web tests

This commit is contained in:
Akim Mamedov
2023-12-18 22:11:15 +07:00
parent 05180c1020
commit fd23160f81
2 changed files with 3 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ function App() {
setResult(res);
})
.catch((err) => {
console.log(err);
setResult({ type: "failure", error: err.toString() });
});
};