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

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