Skip to content

Commit

Permalink
refactor: make command tasks private
Browse files Browse the repository at this point in the history
Signed-off-by: Russell Camo <[email protected]>
  • Loading branch information
russkyc committed Aug 28, 2023
1 parent b13ceac commit 26d9b82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GroomWise.Application/ViewModels/AppViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private async Task NavigateToPage(object param)
}

[Command]
public async Task SetDarkTheme(object param)
private async Task SetDarkTheme(object param)
{
await Task.Run(() =>
{
Expand All @@ -98,7 +98,7 @@ public async Task SetDarkTheme(object param)
}

[Command]
public async Task SetColorTheme(object param)
private async Task SetColorTheme(object param)
{
await Task.Run(() =>
{
Expand Down

0 comments on commit 26d9b82

Please sign in to comment.