Skip to content

Commit

Permalink
removed my decade old warn comments that I'm going to ignore now beca…
Browse files Browse the repository at this point in the history
…use I'm tired and it's old af
  • Loading branch information
sahin-a committed Aug 24, 2023
1 parent 703c951 commit 1c31d54
Showing 1 changed file with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

namespace SteamAccountManager.AvaloniaUI.ViewModels
{
// TODO: looks ridicilous, I should refactor all of this but I don't feel bored enough yet
// TOOD: switch to reactive commands etc.
public class AccountSwitcherViewModel : RoutableViewModel
{
private readonly IGetAccountsWithDetailsUseCase _getAccountsUseCase;
Expand All @@ -32,8 +30,8 @@ public class AccountSwitcherViewModel : RoutableViewModel
private readonly INotificationConfigStorage _notificationConfigStorage;
private readonly IBlacklistedAccountsStorage _blacklistedAccountsStorage;

public List<Account> AllAccounts { get; private set; }
public List<Account> WhitelistedAccounts { get; private set; }
public List<Account> AllAccounts { get; private set; } = new();
public List<Account> WhitelistedAccounts { get; private set; } = new();
public AdvancedObservableCollection<Account> AccountsForDisplay { get; private set; }
public ICommand AccountSelectedCommand { get; set; }
public ICommand ProfileClickedCommand { get; }
Expand All @@ -60,9 +58,6 @@ public bool IsLoading
set => this.RaiseAndSetIfChanged(ref _isLoading, value);
}

// TODO: I've left a total mess here (yes I mean the entire file), I won't merge this garbage into the main branch until its at least decent
// TODO: don't u dear opening a pr until you (yes I'm talking to myself) fixed this mess

public AccountSwitcherViewModel
(
IScreen screen,
Expand Down

0 comments on commit 1c31d54

Please sign in to comment.