Skip to content

Commit

Permalink
🔧 Fix(Dashboard): Fixed two inheritance-related issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dynesshely committed Feb 25, 2024
1 parent eefe60f commit c3e8d9b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 0 additions & 2 deletions KitX Dashboard/ViewModels/AnouncementsWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ internal class AnouncementsWindowViewModel : ViewModelBase, INotifyPropertyChang
{
public new event PropertyChangedEventHandler? PropertyChanged;

private static AppConfig AppConfig => Instances.ConfigManager.AppConfig;

public AnouncementsWindowViewModel()
{
InitCommands();
Expand Down
5 changes: 1 addition & 4 deletions KitX Dashboard/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Avalonia;
using KitX.Dashboard.Configuration;
using KitX.Dashboard.Configuration;
using KitX.Dashboard.Views;
using ReactiveUI;
using System.Reactive;
Expand All @@ -8,8 +7,6 @@ namespace KitX.Dashboard.ViewModels;

internal class MainWindowViewModel : ViewModelBase
{
private static AppConfig AppConfig => Instances.ConfigManager.AppConfig;

public MainWindowViewModel()
{
InitCommands();
Expand Down

0 comments on commit c3e8d9b

Please sign in to comment.