Skip to content

Commit

Permalink
Fix missing activities
Browse files Browse the repository at this point in the history
  • Loading branch information
compulim committed Jan 13, 2019
1 parent de14d4e commit 2439bbd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ function* startDictateAfterSpeakActivity() {
}

function* startDictateAfterAllActivitiesSpoken({ payload: { activityID } }) {
const [spokenActivity] = yield select(activitiesOfID(activityID));
const activities = yield select(activitiesOfID(activityID));
const [spokenActivity] = activities;

if (
spokenActivity
Expand Down

0 comments on commit 2439bbd

Please sign in to comment.