bug fixed : removed word-break warning (#4809)

This commit is contained in:
Manish Kushare 2022-12-15 18:33:46 +05:30 committed by GitHub
parent e80061313a
commit 71ed5bf490
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,5 @@
import React, { Suspense } from 'react';
// eslint-disable-next-line no-unused-vars
import config from 'config';
import { BrowserRouter, Route, Redirect } from 'react-router-dom';
import { history } from '@/_helpers';
@ -74,7 +75,7 @@ class App extends React.Component {
const { updateAvailable, onboarded, darkMode } = this.state;
let toastOptions = {
style: {
'word-break': 'break-all',
wordBreak: 'break-all',
},
};
@ -85,7 +86,7 @@ class App extends React.Component {
borderRadius: '10px',
background: '#333',
color: '#fff',
'word-break': 'break-all',
wordBreak: 'break-all',
},
};
}