Fix bug where we are not passing benchmark input

pull/5376/head
hunteraraujo 2023-09-27 23:43:44 -07:00
parent a555e936c4
commit ee55b85945
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ class SkillTreeViewModel extends ChangeNotifier {
// Execute the first step and initialize the Step object
Map<String, dynamic> stepResponse =
await benchmarkService.executeBenchmarkStep(
task.id, BenchmarkStepRequestBody(input: null));
task.id, BenchmarkStepRequestBody(input: node.data.task));
Step step = Step.fromMap(stepResponse);
// Check if it's the last step