diff --git a/common/Environments/Styles/HorizontalCardStyles.xaml b/common/Environments/Styles/HorizontalCardStyles.xaml
index 7023eebdce..254211b36e 100644
--- a/common/Environments/Styles/HorizontalCardStyles.xaml
+++ b/common/Environments/Styles/HorizontalCardStyles.xaml
@@ -239,12 +239,12 @@
-
diff --git a/tools/Environments/DevHome.Environments/ViewModels/LandingPageViewModel.cs b/tools/Environments/DevHome.Environments/ViewModels/LandingPageViewModel.cs
index 0786b1eba9..0dcaa3fe97 100644
--- a/tools/Environments/DevHome.Environments/ViewModels/LandingPageViewModel.cs
+++ b/tools/Environments/DevHome.Environments/ViewModels/LandingPageViewModel.cs
@@ -409,8 +409,7 @@ public void SearchHandler(string query)
if (system is ComputeSystemViewModel computeSystemViewModel)
{
- var providerName = computeSystemViewModel.ProviderDisplayName;
- if (providerName != _selectedProvider)
+ if (_selectedProvider.Length > 0 && computeSystemViewModel.ProviderDisplayName != _selectedProvider)
{
return false;
}
diff --git a/tools/SetupFlow/DevHome.SetupFlow/Models/ConfigureTargetTask.cs b/tools/SetupFlow/DevHome.SetupFlow/Models/ConfigureTargetTask.cs
index 2de0a97bed..4a00fd3cb8 100644
--- a/tools/SetupFlow/DevHome.SetupFlow/Models/ConfigureTargetTask.cs
+++ b/tools/SetupFlow/DevHome.SetupFlow/Models/ConfigureTargetTask.cs
@@ -411,12 +411,12 @@ public IAsyncOperation Execute()
applyConfigurationOperation.ConfigurationSetStateChanged += OnApplyConfigurationOperationChanged;
applyConfigurationOperation.ActionRequired += OnActionRequired;
- // We'll cancel the operation after 10 minutes. This is arbitrary for now and will need to be adjusted in the future.
+ // We'll cancel the operation after 30 minutes. This is arbitrary for now and will need to be adjusted in the future.
// but we'll need to give the user the ability to cancel the operation in the UI as well. This is just a safety net.
// More work is needed to give the user the ability to cancel the operation as the capability is not currently available.
// in the UI of Dev Home's Loading page.
var tokenSource = new CancellationTokenSource();
- tokenSource.CancelAfter(TimeSpan.FromMinutes(10));
+ tokenSource.CancelAfter(TimeSpan.FromMinutes(30));
ApplyConfigurationAsyncOperation = applyConfigurationOperation.StartAsync();
var result = await ApplyConfigurationAsyncOperation.AsTask().WaitAsync(tokenSource.Token);