Skip to content

Commit

Permalink
Fix bug where we are not passing benchmark input
Browse files Browse the repository at this point in the history
  • Loading branch information
hunteraraujo committed Sep 28, 2023
1 parent a555e93 commit ee55b85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/lib/viewmodels/skill_tree_viewmodel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ee55b85

Please sign in to comment.