diff --git a/task-launcher/src/tasks/math/timeline.ts b/task-launcher/src/tasks/math/timeline.ts index 1763389a..843b073b 100644 --- a/task-launcher/src/tasks/math/timeline.ts +++ b/task-launcher/src/tasks/math/timeline.ts @@ -365,11 +365,11 @@ export default function buildMathTimeline(config: Record, mediaAsse const newCorpora = { downex: taskStore().corpora.downex, - stimulus: corpus, + stimulus: heavyInstructions ? downexCorpus : corpus, }; taskStore('corpora', newCorpora); - const numOfTrials = taskStore().totalTrials; + const numOfTrials = heavyInstructions ? taskStore().totalDownexTrials : taskStore().totalTrials; for (let i = 0; i < numOfTrials; i++) { timeline.push(setupBlock); timeline.push(repeatSliderPracticeBlock());