Merge pull request #397 from ticky/friendlier-unknown-errors

Friendlier unknown errors
This commit is contained in:
Eugen 2017-01-05 03:34:06 +01:00 committed by GitHub
commit 879aa9ad26
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ export default function errorsMiddleware() {
dispatch(showAlert(title, message));
} else {
console.error(action.error);
dispatch(showAlert('Oops!', 'An unexpected error occurred. Inspect the console for more details'));
dispatch(showAlert('Oops!', 'An unexpected error occurred.'));
}
}
}