From 36ac49cf0adeb8e49f0e4db5aedf8d747f845b07 Mon Sep 17 00:00:00 2001
From: Dariusz Rybicki <dariusz@elixxir.io>
Date: Wed, 30 Nov 2022 10:13:45 +0100
Subject: [PATCH] Add missing init to GroupsComponent

---
 .../xx-messenger/Sources/GroupsFeature/GroupsComponent.swift    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Examples/xx-messenger/Sources/GroupsFeature/GroupsComponent.swift b/Examples/xx-messenger/Sources/GroupsFeature/GroupsComponent.swift
index c1facc4e..ae533463 100644
--- a/Examples/xx-messenger/Sources/GroupsFeature/GroupsComponent.swift
+++ b/Examples/xx-messenger/Sources/GroupsFeature/GroupsComponent.swift
@@ -9,6 +9,8 @@ public struct GroupsComponent: ReducerProtocol {
     case start
   }
 
+  public init() {}
+
   public var body: some ReducerProtocol<State, Action> {
     Reduce { state, action in
       switch action {
-- 
GitLab