Removed redundant settings title (#357)

This commit is contained in:
Thorsten Sommer 2025-03-16 15:19:17 +01:00 committed by GitHub
parent 780e45911d
commit 81417daa78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -314,7 +314,7 @@ public abstract partial class AssistantBase<TSettings> : AssistantLowerBase, IMe
protected async Task OpenSettingsDialog()
{
var dialogParameters = new DialogParameters();
await this.DialogService.ShowAsync<TSettings>("Open Settings", dialogParameters, DialogOptions.FULLSCREEN);
await this.DialogService.ShowAsync<TSettings>(null, dialogParameters, DialogOptions.FULLSCREEN);
}
protected Task SendToAssistant(Tools.Components destination, SendToButton sendToButton)