Skip to content

Commit

Permalink
feat(recurring buy): fixing sb order data
Browse files Browse the repository at this point in the history
  • Loading branch information
blockdylanb authored and milan-bc committed Jul 23, 2021
1 parent dfdd9fe commit adaf577
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export default () => {
const recurringBuySagas = sagas()

return function* recurringBuySaga() {
yield takeLatest(actions.showModal, recurringBuySagas.showModal)
yield takeLatest(actions.showModal.type, recurringBuySagas.showModal)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const SchedulerContainer = (props) => {
}

const Scheduler = ({ disabled: boolean }) => {
return <Field component={SchedulerContainer} name='frequency' />
return <Field component={SchedulerContainer} name='period' />
}

// export default reduxForm<{}, { disabled: boolean }>({
Expand Down

0 comments on commit adaf577

Please sign in to comment.