How can I fix the error below?
Error: Text content does not match server-rendered HTML.
See more info here: https://nextjs.org/docs/messages/react-hydration-error
Here's my code.
export class Card {
constructor(props) {
this.id = Math.random();
}
}
If I change the id to a static number like below, the error goes away but I need the id to be a random number.
export class Card {
constructor(props) {
this.id = 3
}
}