diff --git a/frontend/src/App/App.jsx b/frontend/src/App/App.jsx index 6aa99aaee3..5a96ccc532 100644 --- a/frontend/src/App/App.jsx +++ b/frontend/src/App/App.jsx @@ -72,7 +72,11 @@ class App extends React.Component { render() { const { updateAvailable, onboarded, darkMode } = this.state; - let toastOptions = {}; + let toastOptions = { + style: { + 'word-break': 'break-all', + }, + }; if (darkMode) { toastOptions = { @@ -81,6 +85,7 @@ class App extends React.Component { borderRadius: '10px', background: '#333', color: '#fff', + 'word-break': 'break-all', }, }; }