Open
Description
Duplicates
- I have searched the existing issues
Latest version
- I have tested the latest version
Steps to reproduce 🕹
Here is the repository to reproduce the problem: https://github.com/tippfelher/nextjs13-app-dir-mui-textfield
import TextField from '@mui/material/TextField';
export default function Home() {
return <TextField />;
}
Current behavior 😯
Warning: Prop id' did not match. Server: ": R219mcq:" Client: ": Ral6pj9:"
client and server generate random ids for the textfield which (obviously) never match and cause said error:
Expected behavior 🤔
Client and server generate the same id, and no warnings.