In the Next.js, I am getting below warning.
Warning: Prop style did not match. Server: "position:absolute;top:0;left:0;right:0;bottom:0;overflow:scroll;-webkit-overflow-scrolling:touch;margin-right:0;margin-bottom:0" Client: "position:absolute;top:0;left:0;right:0;bottom:0;overflow:scroll;-webkit-overflow-scrolling:touch;margin-right:-17px;margin-bottom:-17px"`
If your app runs on both client and server, activate the universal mode. This will ensure that the initial markup on client and server are the same.
Add the universal={true} parameter to your <Scrollbars> element.
It worked thank you!
For me it doesn't work even with universal={true}, still get the same error.
Most helpful comment
If your app runs on both client and server, activate the universal mode. This will ensure that the initial markup on client and server are the same.
Add the
universal={true}parameter to your<Scrollbars>element.See here for more info.