Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Material UI Warning

I'm using Material UI tabs for the first time in my project, everything works fine but there is one error in console while running the project here is:

Warning: Failed prop type: Material UI: overlap="rectangle" was deprecated. Use overlap="rectangular" instead.

like image 294
MD Nuruzzaman Avatar asked Mar 22 '26 08:03

MD Nuruzzaman


1 Answers

If you use the Badge component add or change the value of the overlap property to rectangular.

<Badge overlap="rectangular" .../>

The error comes from the Badge.js

 if (overlap === 'rectangle') {
  throw new Error('Material-UI: `overlap="rectangle"` was deprecated. Use `overlap="rectangular"` instead.');
}

I hope that will give some peace of mind to some ;)

like image 51
bluehipy Avatar answered Mar 26 '26 08:03

bluehipy



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!