Skip to content

Commit 80867dc

Browse files
authored
Merge pull request #59 from openimis/feature/OSB-56
OSB-56: fixing store reference in tasks management
2 parents f4bd625 + ffe0fe1 commit 80867dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/TaskApprovementPanel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ const mapStateToProps = (state) => ({
145145
rights: !!state.core && !!state.core.user && !!state.core.user.i_user ? state.core.user.i_user.rights : [],
146146
user: !!state.core && !!state.core.user ? state.core.user : null,
147147
confirmed: state.core.confirmed,
148-
submittingMutation: state.socialProtection.submittingMutation,
149-
mutation: state.socialProtection.mutation,
148+
submittingMutation: state.tasksManagement.submittingMutation,
149+
mutation: state.tasksManagement.mutation,
150150
});
151151

152152
const mapDispatchToProps = (dispatch) => bindActionCreators({

0 commit comments

Comments
 (0)