diff --git a/frontend/src/ts/mfe-app-tools.ts b/frontend/src/ts/mfe-app-tools.ts index 9e7b8009..545638ff 100644 --- a/frontend/src/ts/mfe-app-tools.ts +++ b/frontend/src/ts/mfe-app-tools.ts @@ -13,7 +13,7 @@ export type ChildEventType = export type ParentEventType = 'navigate'; -export function fireMfeEventToContainer(eventType: ChildEventType, eventData: any): any { +export function fireMfeEventToContainer(eventType: ChildEventType, eventData: any) { if (typeof childEventHandlerFromContainer === 'function') { return childEventHandlerFromContainer(eventType, eventData); }