From de91af6024719e868408c91833c6949efc5f027d Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Tue, 14 Jul 2026 17:17:47 +0200 Subject: [PATCH] Removed not necessary genic parameter --- app/MindWork AI Studio/Components/AttachDocuments.razor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/Components/AttachDocuments.razor.cs b/app/MindWork AI Studio/Components/AttachDocuments.razor.cs index 495c17ad..d646555e 100644 --- a/app/MindWork AI Studio/Components/AttachDocuments.razor.cs +++ b/app/MindWork AI Studio/Components/AttachDocuments.razor.cs @@ -169,7 +169,7 @@ public partial class AttachDocuments : MSGComponentBase var pending = this.OwnerChat?.PendingMediaTranscripts ?? []; var changed = false; - foreach (var attachment in completed.Concat(pending)) + foreach (var attachment in completed.Concat(pending)) changed |= this.DocumentPaths.Add(attachment); if (changed)