diff --git a/CHANGELOG.md b/CHANGELOG.md index d027cd3..927af09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # CleevioRouters Changelog +## [3.2.1] - 2025-12-05 +- Fix ModalNavigationRouter dismissRouter function + ## [3.2.0] - 2025-07-14 - Swift 6.2 compilation mode support - Updated example project diff --git a/Sources/FlowPilot/ModalNavigationRouter.swift b/Sources/FlowPilot/ModalNavigationRouter.swift index a99f174..83ac27d 100644 --- a/Sources/FlowPilot/ModalNavigationRouter.swift +++ b/Sources/FlowPilot/ModalNavigationRouter.swift @@ -66,7 +66,6 @@ open class ModalNavigationRouter: ModalRouter { open override func dismissRouter(animated: Bool, completion: (() -> Void)?) { navigationRouterWrapper.navigationRouter.dismissRouter(animated: animated, completion: nil) - super.dismissRouter(animated: animated, completion: completion) } }