summaryrefslogtreecommitdiff
path: root/frontend/src/components/errors
diff options
context:
space:
mode:
authorVictor Chabbert <chabbertvi@eisti.eu>2017-05-28 16:58:54 +0200
committerVictor Chabbert <chabbertvi@eisti.eu>2017-05-28 16:58:54 +0200
commitc3e86bed99863e38e6bbc5c42c34f8b8322228de (patch)
tree738e42b6158a0c80ceef989f6cf2a4ab4c0f52e6 /frontend/src/components/errors
parentRemove unnecessary webjars (diff)
downloadseven-wonders-c3e86bed99863e38e6bbc5c42c34f8b8322228de.tar.gz
seven-wonders-c3e86bed99863e38e6bbc5c42c34f8b8322228de.tar.bz2
seven-wonders-c3e86bed99863e38e6bbc5c42c34f8b8322228de.zip
Change print width to 120, again
Diffstat (limited to 'frontend/src/components/errors')
-rw-r--r--frontend/src/components/errors/errorToastContainer.js7
1 files changed, 1 insertions, 6 deletions
diff --git a/frontend/src/components/errors/errorToastContainer.js b/frontend/src/components/errors/errorToastContainer.js
index 073b6038..65711073 100644
--- a/frontend/src/components/errors/errorToastContainer.js
+++ b/frontend/src/components/errors/errorToastContainer.js
@@ -3,12 +3,7 @@ import ReduxToastr from 'react-redux-toastr';
import './react-redux-toastr.min.css';
const ErrorToastContainer = props => (
- <ReduxToastr
- timeOut={4000}
- preventDuplicates
- position="bottom-left"
- progressBar
- />
+ <ReduxToastr timeOut={4000} preventDuplicates position="bottom-left" progressBar />
);
export default ErrorToastContainer;
bgstack15