Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): Fix Immer import #2029

Merged
merged 2 commits into from
Sep 6, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix Immer import
The `produce` function is a named export, not a default export:

https://immerjs.github.io/immer/produce
  • Loading branch information
fdb committed Sep 6, 2023
commit d46d80d3f038e27e3001cf0603f5773836bf3adf
2 changes: 1 addition & 1 deletion docs/recipes/recipes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ Reducing nested structures is tiresome.
Have you tried [Immer](https://github.com/immerjs/immer)?

```jsx
import produce from 'immer'
import { produce } from 'immer'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me. It this the only place that needs to be changed?


const useStore = create((set) => ({
lush: { forest: { contains: { a: 'bear' } } },
Expand Down
Loading