Skip to content
Open
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/content/6/en/part6a.md
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ const useNoteStore = create(set => ({
export const useNotes = () => useNoteStore(state => state.notes)
```

For now, the application does not have the functionality to add new notes, and the strore does not yet support it. The state has been initialized with one note already added so that we can verify the application can successfully render the state.
For now, the application does not have the functionality to add new notes, and the store does not yet support it. The state has been initialized with one note already added so that we can verify the application can successfully render the state.

### Pure functions and immutable objects

Expand Down