Removed unused parameter

This commit is contained in:
Peer Schütt 2025-03-12 11:09:08 +01:00
parent d5fca26c72
commit 09676bce3d

View File

@ -95,8 +95,6 @@ public abstract partial class AssistantBase<TSettings> : ComponentBase, IMessage
protected virtual bool ShowCopyResult => true; protected virtual bool ShowCopyResult => true;
protected virtual bool ShowReset => true; protected virtual bool ShowReset => true;
protected virtual bool ShowAssistantSettings => true;
protected virtual ChatThread ConvertToChatThread => this.chatThread ?? new(); protected virtual ChatThread ConvertToChatThread => this.chatThread ?? new();
@ -327,7 +325,6 @@ public abstract partial class AssistantBase<TSettings> : ComponentBase, IMessage
protected async Task OpenSettingsDialog() protected async Task OpenSettingsDialog()
{ {
var dialogParameters = new DialogParameters(); var dialogParameters = new DialogParameters();
await this.DialogService.ShowAsync<TSettings>("Open Settings", dialogParameters, DialogOptions.FULLSCREEN); await this.DialogService.ShowAsync<TSettings>("Open Settings", dialogParameters, DialogOptions.FULLSCREEN);
} }