DEV Community

Discussion on: Common mistake done while using react hooks

 
tonestrike profile image
Tony Giorgi • Edited

You are creating a new array. This code is simply wrong and misleading. If you want to update the value of name for record 2, find the object in the array, update and set state to the same array. Then your code will make sense.