Skip to content
Snippets Groups Projects
Unverified Commit cc46c6b4 authored by Jessica Stokes's avatar Jessica Stokes
Browse files

Friendlier unknown errors

Don't ask users to check the console - if they're on mobile, they probably can't anyway ;)
parent 251b0429
No related branches found
No related tags found
No related merge requests found
......@@ -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.'));
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment