Skip to content

Commit

Permalink
UI: just show confirmation for challenge cleanup
Browse files Browse the repository at this point in the history
Previously required to check result which could be null
  • Loading branch information
webprofusion-chrisc committed Sep 10, 2024
1 parent 191ed5b commit dcb68b5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,8 @@ private async void ChallengeCleanup_Click(object sender, RoutedEventArgs e)
{
var result = await AppViewModel.Current.PerformChallengeCleanup(ItemViewModel.SelectedItem);

AppViewModel.Current.ShowNotification(result.FirstOrDefault().Message);
AppViewModel.Current.ShowNotification("Challenge Cleanup Completed");

}
}
}

0 comments on commit dcb68b5

Please sign in to comment.