From c5e278cdaf5a224b3a69557443e5eca62f275b58 Mon Sep 17 00:00:00 2001 From: Dariusz Rybicki <dariusz@elixxir.io> Date: Fri, 21 Oct 2022 10:57:16 +0200 Subject: [PATCH] Add missing public init --- .../Sources/ContactLookupFeature/ContactLookupComponent.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Examples/xx-messenger/Sources/ContactLookupFeature/ContactLookupComponent.swift b/Examples/xx-messenger/Sources/ContactLookupFeature/ContactLookupComponent.swift index b581f3f0..14514489 100644 --- a/Examples/xx-messenger/Sources/ContactLookupFeature/ContactLookupComponent.swift +++ b/Examples/xx-messenger/Sources/ContactLookupFeature/ContactLookupComponent.swift @@ -27,6 +27,8 @@ public struct ContactLookupComponent: ReducerProtocol { case didFail(NSError) } + public init() {} + @Dependency(\.appDependencies.messenger) var messenger @Dependency(\.appDependencies.mainQueue) var mainQueue @Dependency(\.appDependencies.bgQueue) var bgQueue -- GitLab