Skip to content
Snippets Groups Projects
Commit 02b1d4a1 authored by Tom Robinson's avatar Tom Robinson
Browse files

Fix pulse saving, broke when centralizing Redux

parent 32b3332d
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ export const savePulse = createThunkAction(SAVE_PULSE, function(pulse) {
export const saveEditingPulse = createThunkAction(SAVE_EDITING_PULSE, function() {
return async function(dispatch, getState) {
let { editingPulse } = getState();
let { pulse: { editingPulse } } = getState();
if (editingPulse.id != null) {
return await Pulse.update(editingPulse);
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment