Skip to content

Instantly share code, notes, and snippets.

@trblackw
Created May 31, 2020 20:05
Show Gist options
  • Save trblackw/2c1842164a22ddd8198d5b3fb13fec47 to your computer and use it in GitHub Desktop.
Save trblackw/2c1842164a22ddd8198d5b3fb13fec47 to your computer and use it in GitHub Desktop.
import { produceWithPatches } from "immer"
const [nextState, patches, inversePatches] = produceWithPatches((draft, confirmedUserId) => {
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