diff --git a/app/MindWork AI Studio/Chat/ChatThread.cs b/app/MindWork AI Studio/Chat/ChatThread.cs index 3d817b1d..406ff3ba 100644 --- a/app/MindWork AI Studio/Chat/ChatThread.cs +++ b/app/MindWork AI Studio/Chat/ChatThread.cs @@ -148,7 +148,7 @@ public sealed record ChatThread // string systemPromptText; logMessage = $"Using no profile for chat thread '{chatThread.Name}'."; - if ((string.IsNullOrWhiteSpace(chatThread.SelectedProfile)) || (this.allowProfile is false)) + if (string.IsNullOrWhiteSpace(chatThread.SelectedProfile) || this.allowProfile is false) systemPromptText = systemPromptWithAugmentedData; else {