Skip to content

Commit

Permalink
Disabled user profile loading.
Browse files Browse the repository at this point in the history
  • Loading branch information
syntax-tm committed Jun 2, 2024
1 parent 9cfa711 commit dbd8ece
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/SAM/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,17 @@ public partial class MainWindowViewModel

public MainWindowViewModel()
{
User = new (SteamClientManager.Default);
//User = new (SteamClientManager.Default);
HomeVm = new ();

CurrentVm = HomeVm;
}

public MainWindowViewModel(SteamGameViewModel gameVm)
{
//User = new (SteamClientManager.Default);
GameVm = gameVm;

User = new (SteamClientManager.Default);

CurrentVm = gameVm;
}

Expand Down

0 comments on commit dbd8ece

Please sign in to comment.