From 9ba2bb9c6a470e1b30621fd478ca72aba3fc1a28 Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Thu, 10 Apr 2025 14:56:44 -0700 Subject: [PATCH] Remove hashable requirement from `UIPushAction` This requirement isn't needed, since the hashability occurs in the internals of `StackState`. --- .../UIKit/NavigationStackControllerUIKit.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ComposableArchitecture/UIKit/NavigationStackControllerUIKit.swift b/Sources/ComposableArchitecture/UIKit/NavigationStackControllerUIKit.swift index 9f0d32ca96e6..4f9981940d4a 100644 --- a/Sources/ComposableArchitecture/UIKit/NavigationStackControllerUIKit.swift +++ b/Sources/ComposableArchitecture/UIKit/NavigationStackControllerUIKit.swift @@ -91,7 +91,7 @@ /// - filePath: The source `#filePath` associated with the push. /// - line: The source `#line` associated with the push. /// - column: The source `#column` associated with the push. - public func callAsFunction( + public func callAsFunction( state: Element, fileID: StaticString = #fileID, filePath: StaticString = #filePath,