Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit f100da9

Browse files
committed
Fixed missing ComputeSystem
1 parent 026fe98 commit f100da9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/SetupFlow/DevHome.SetupFlow/ViewModels/MainPageViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,6 @@ private void StartSetupForTargetEnvironment(string flowTitle)
233233
public void StartSetupForTargetEnvironmentWithTelemetry(string flowTitle, string navigationAction, string originPage, ComputeSystemReviewItem item)
234234
{
235235
var setupTask = _host.GetService<SetupTargetTaskGroup>();
236-
setupTask.ConfigureTask.SetTargetComputeSystem(item);
237236

238237
_log.Information("Starting setup for target environment from the Environments page");
239238
StartSetupFlowForTaskGroups(
@@ -243,6 +242,7 @@ public void StartSetupForTargetEnvironmentWithTelemetry(string flowTitle, string
243242
_host.GetService<RepoConfigTaskGroup>(),
244243
_host.GetService<AppManagementTaskGroup>());
245244

245+
setupTask.ConfigureTask.SetTargetComputeSystem(item);
246246
Orchestrator.GoToNextPage().GetAwaiter().GetResult();
247247
}
248248

0 commit comments

Comments
 (0)