Stop 'cannot communicate with server' spam

pull/2188/head
Andrew Watkins 2017-11-28 11:17:59 -05:00
parent 2fb9196f6c
commit f80a6d8f03
1 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,8 @@ const errorsMiddleware = store => next => action => {
} else if (altText) {
store.dispatch(notify(alertType, altText))
} else {
store.dispatch(notify(alertType, 'Cannot communicate with server.'))
// TODO: actually do proper error handling
// store.dispatch(notify(alertType, 'Cannot communicate with server.'))
}
}