Friendlier unknown errors

Don't ask users to check the console - if they're on mobile, they probably can't anyway ;)
lolsob-rspec
Jessica Stokes 2017-01-04 18:31:45 -08:00
parent 66c5363bae
commit a91e6dbeea
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.'));
}
}
}