perf: experimental upgrade to deps and fix esbuild warnings

This commit is contained in:
David Ralph 2022-08-26 12:06:25 +01:00
parent b8f2b7fb1f
commit 218f7bec7b
6 changed files with 10 additions and 10 deletions

View File

@ -15,9 +15,9 @@
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@floating-ui/react-dom": "^1.0.0",
"@fontsource/lexend-deca": "4.4.5",
"@fontsource/montserrat": "4.4.5",
"@mui/material": "5.10.1",
"@fontsource/lexend-deca": "4.5.11",
"@fontsource/montserrat": "4.5.12",
"@mui/material": "5.10.2",
"@sentry/react": "^7.11.1",
"embla-carousel-autoplay": "^7.0.1",
"embla-carousel-react": "^7.0.1",

View File

@ -390,7 +390,7 @@ export default class Create extends PureComponent {
// photos
const nextPhotosDisabled = !(
this.state.addonData.photos !== '' && this.state.addonData.photos !== []
this.state.addonData.photos !== ''
);
const addPhotos = (
<>

View File

@ -74,7 +74,9 @@ export default class Widgets extends PureComponent {
<div id="widgets">
<Suspense fallback={<></>}>
{this.enabled('searchBar') ? <Search /> : null}
{this.state.order.map((element) => this.widgets[element])}
{this.state.order.map((element, key) => (
<Fragment key={key}>{this.widgets[element]}</Fragment>
))}
{this.enabled('weatherEnabled') && this.online ? <Weather /> : null}
</Suspense>
</div>

View File

@ -216,7 +216,6 @@ export default class Background extends PureComponent {
if (
customBackground !== '' &&
customBackground !== 'undefined' &&
customBackground !== [''] &&
customBackground !== undefined
) {
const object = {

View File

@ -204,8 +204,7 @@ export default class Quote extends PureComponent {
if (
customQuote &&
customQuote !== '' &&
customQuote !== 'undefined' &&
customQuote !== ['']
customQuote !== 'undefined'
) {
return this.setState({
quote: '"' + customQuote.quote + '"',

View File

@ -1,4 +1,4 @@
import { render } from 'react-dom';
import { createRoot } from 'react-dom/client';
import * as Sentry from '@sentry/react';
import App from './App';
@ -61,4 +61,4 @@ Sentry.init({
autoSessionTracking: false,
});
render(<App />, document.getElementById('root'));
createRoot(document.getElementById('root')).render(<App />);