Skip to content

Instantly share code, notes, and snippets.

@trblackw
Created May 31, 2020 19:53
Show Gist options
  • Save trblackw/cec2bea610cbfa6425a623c5a63fd888 to your computer and use it in GitHub Desktop.
Save trblackw/cec2bea610cbfa6425a623c5a63fd888 to your computer and use it in GitHub Desktop.
import produce from "immer"
const updateUsers = (state, confirmedUserId) => {
//users will be user state defined above
return produce(state, draft => {
draft[draft.findIndex(({ id }) => id === confirmedUserId)].emailConfirmed = true
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment