Skip to content

Commit 9ef8317

Browse files
committed
don't handle async error on disconnect
1 parent 8cc4c7a commit 9ef8317

File tree

1 file changed

+1
-1
lines changed
  • dash/dash-renderer/src/actions

1 file changed

+1
-1
lines changed

dash/dash-renderer/src/actions/api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default function apiThunk(endpoint, method, store, id, body) {
6262
// errors or unresponsive servers.
6363
console.log('fetch error', res);
6464
setConnectionStatus(false);
65-
throw e;
65+
return;
6666
}
6767

6868
if (res.status === STATUS.UNAUTHORIZED) {

0 commit comments

Comments
 (0)