Skip to content

Commit 04cc978

Browse files
authored
Merge pull request #4175 from gobbledyglomp/source
Fix linting issue
2 parents 67e86d7 + cd43504 commit 04cc978

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/content/6/en/part6c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ export const initializeNotes = () => {
526526
export const appendNote = (content) => {
527527
return async (dispatch) => {
528528
const newNote = await noteService.createNew(content)
529-
dispatch(noteSlice.actions.createNote(newNote))
529+
dispatch(createNote(newNote))
530530
}
531531
}
532532
// highlight-end

src/content/6/fi/osa6c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ export const initializeNotes = () => {
525525
export const appendNote = (content) => {
526526
return async (dispatch) => {
527527
const newNote = await noteService.createNew(content)
528-
dispatch(noteSlice.actions.createNote(newNote))
528+
dispatch(createNote(newNote))
529529
}
530530
}
531531
// highlight-end

0 commit comments

Comments
 (0)