You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an error when SSR is using: Warning: Prop id did not match. Server: "rct-4cYwqnm-userActions" Client: "rct-wpKhqdZ-userActions"
The root of the issue is in generating random id for tree this.id = rct-${nanoid(7)};
In this case id will be different on server and client.
I suggest to add a new prop treeId with default value rct-${nanoid(7)}
The text was updated successfully, but these errors were encountered:
There is an error when SSR is using:
Warning: Prop id did not match. Server: "rct-4cYwqnm-userActions" Client: "rct-wpKhqdZ-userActions"
The root of the issue is in generating random id for tree
this.id = rct-${nanoid(7)};
In this case id will be different on server and client.
I suggest to add a new prop treeId with default value
rct-${nanoid(7)}
The text was updated successfully, but these errors were encountered: