Skip to content

Commit

Permalink
feat(rb): fix old usage of recurring buys
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed Jul 29, 2021
1 parent e8d72a4 commit cc19be5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const mapStateToProps = (state: RootState): LinkStatePropsType => ({

const mapDispatchToProps = (dispatch: Dispatch) => ({
modalActions: bindActionCreators(actions.modals, dispatch),
recurringBuysActions: bindActionCreators(actions.components.recurringBuys, dispatch)
recurringBuysActions: bindActionCreators(actions.components.recurringBuy, dispatch)
})

const connector = connect(mapStateToProps, mapDispatchToProps)
Expand Down

0 comments on commit cc19be5

Please sign in to comment.