diff --git a/LM-Kit-Maestro/AppShell.xaml b/LM-Kit-Maestro/AppShell.xaml index 23d2d3e..bfd513f 100644 --- a/LM-Kit-Maestro/AppShell.xaml +++ b/LM-Kit-Maestro/AppShell.xaml @@ -25,9 +25,9 @@ --> - + diff --git a/LM-Kit-Maestro/ViewModels/Pages/AppShellViewModel.cs b/LM-Kit-Maestro/ViewModels/Pages/AppShellViewModel.cs index 4db0239..d315cd3 100644 --- a/LM-Kit-Maestro/ViewModels/Pages/AppShellViewModel.cs +++ b/LM-Kit-Maestro/ViewModels/Pages/AppShellViewModel.cs @@ -29,8 +29,8 @@ public partial class AppShellViewModel : ViewModelBase [ObservableProperty] MaestroTabViewModel _modelsTab = new MaestroTabViewModel("Models", "ModelsPage"); - [ObservableProperty] - MaestroTabViewModel _assistantsTab = new MaestroTabViewModel("Assistants", "AssistantsPage"); + //[ObservableProperty] + //MaestroTabViewModel _assistantsTab = new MaestroTabViewModel("Assistants", "AssistantsPage"); private MaestroTabViewModel? _currentTab; public MaestroTabViewModel CurrentTab @@ -62,11 +62,11 @@ public AppShellViewModel(IPopupService popupService, INavigationService navigati _llmFileManager = llmFileManager; _appSettingsService = appSettingsService; - Tabs.Add(AssistantsTab); + //Tabs.Add(AssistantsTab); Tabs.Add(ChatTab); Tabs.Add(ModelsTab); - CurrentTab = AssistantsTab; + CurrentTab = ChatTab; } public async Task Init()