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
When I tried to improve performance by separating a field and add React.memo, the error messages stopped showing altogether.
Is there a way to make the error messages show even with React.memo?
The text was updated successfully, but these errors were encountered:
React.memo prevents rerendering of the component. If the component did not render then the message will not appear. Can you send some code examples, maybe we can come up with a solution?
Let's say I have a dynamic form with variable fields.
They are listed in the form of a table like this:
Now we I change the value of 1 row, it's ideal that the other rows do not re-render because nothing really is changed.
And to achieve that React.memo is often used, but in the case of sharing validator, is it possible?
When I tried to improve performance by separating a field and add React.memo, the error messages stopped showing altogether.
Is there a way to make the error messages show even with React.memo?
The text was updated successfully, but these errors were encountered: