diff --git a/app/MindWork AI Studio/Components/MSGComponentBase.cs b/app/MindWork AI Studio/Components/MSGComponentBase.cs index 1a463646..57e9a29e 100644 --- a/app/MindWork AI Studio/Components/MSGComponentBase.cs +++ b/app/MindWork AI Studio/Components/MSGComponentBase.cs @@ -66,11 +66,9 @@ public abstract class MSGComponentBase : ComponentBase, IDisposable, IMessageBus this.Lang = await this.SettingsManager.GetActiveLanguagePlugin(); await this.InvokeAsync(this.StateHasChanged); break; - - default: - await this.ProcessIncomingMessage(sendingComponent, triggeredEvent, data); - break; } + + await this.ProcessIncomingMessage(sendingComponent, triggeredEvent, data); } public async Task ProcessMessageWithResult(ComponentBase? sendingComponent, Event triggeredEvent, TPayload? data)