ml-opensource / admin-panel-template-reactjs

25 stars 10 forks source link

Warning: findDOMNode is deprecated in StrictMode #46

Closed yukinoda closed 3 years ago

yukinoda commented 3 years ago

Warning on Menu button click

findDOMNode is deprecated in StrictMode.

image

yukinoda commented 3 years ago

Reference Link: https://reactjs.org/docs/strict-mode.html#warning-about-deprecated-finddomnode-usage

yukinoda commented 3 years ago

This article might help: https://medium.com/trabe/getting-rid-of-finddomnode-method-in-your-react-application-a0d7093b2660

yukinoda commented 3 years ago

Other discussion: styled-components/styled-components#2154

yukinoda commented 3 years ago

Material-ui might be causing this issue. https://stackoverflow.com/questions/61220424/material-ui-drawer-finddomnode-is-deprecated-in-strictmode

yukinoda commented 3 years ago

Fixed issue by changing

import { createMuiTheme } from '@material-ui/core';

to

import { unstable_createMuiStrictModeTheme as createMuiTheme } from '@material-ui/core';