Fix warnings.
authorPiotr Czaja/Advanced Frameworks (PLT) /SRPOL/Engineer/Samsung Electronics <p.czaja@samsung.com>
Mon, 7 Jun 2021 10:08:34 +0000 (12:08 +0200)
committerPiotr Czaja <p.czaja@samsung.com>
Tue, 14 Sep 2021 11:01:34 +0000 (13:01 +0200)
Fitness/ViewModels/ExercisePreviewViewModel.cs
Fitness/Views/LoadingView.cs

index cdfc63a45cd129a8734d64f8cc2ac35051915968..17097ca79c271b4e8207743aed131fbcd0fab0a5 100644 (file)
@@ -16,7 +16,7 @@ namespace Fitness.ViewModels
 
         public ExercisePreviewViewModel()
         {
-            Skip = new Command(() => _ = NavigationService.Instance.NavigateToExercisingView());
+            Skip = new Command(NavigationService.Instance.NavigateToExercisingView);
             Back = new Command(NavigationService.Instance.Pop);
             PreviousWorkout = new Command(GoPrevious);
             NextWorkout = new Command(GoNext);
index 2b19715fdc07d7a3c310bd53eb7194c81fcc378f..9ea63163c5c6a284bc85c6ed54240aced761a78a 100644 (file)
@@ -12,7 +12,6 @@ namespace Fitness.Views
             PropertyMap fontStyle = new PropertyMap();
             fontStyle.Add("weight", new PropertyValue("medium"));
             CountingLabel.FontStyle = fontStyle;
-
         }
 
         private void CountingLabel_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)