Skip to content

Commit

Permalink
rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kugel3 committed Jun 14, 2023
1 parent d080594 commit 9d7b7d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public struct AnswerSecurityQuestionsCoordinator: Sendable, FeatureReducer {

public let purpose: Purpose
var root: Path.State
var path: StackState<Path.State> = []
var path: StackState<Path.State> = .init()

public init(purpose: Purpose) {
self.purpose = purpose
Expand Down Expand Up @@ -52,7 +52,7 @@ public struct AnswerSecurityQuestionsCoordinator: Sendable, FeatureReducer {

public enum ChildAction: Sendable, Equatable {
case root(Path.Action)
case path(StackAction<Path.Action>)
case path(StackActionOf<Path>)
}

public struct Path: Sendable, ReducerProtocol {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Profile
public struct CreateSecurityStructureCoordinator: Sendable, FeatureReducer {
public struct State: Sendable, Hashable {
var root: Path.State
var path: StackState<Path.State> = []
var path: StackState<Path.State> = .init()

public init() {
root = .start(.init())
Expand Down Expand Up @@ -52,7 +52,7 @@ public struct CreateSecurityStructureCoordinator: Sendable, FeatureReducer {

public enum ChildAction: Sendable, Equatable {
case root(Path.Action)
case path(StackAction<Path.Action>)
case path(StackActionOf<Path>)
}

public enum DelegateAction: Sendable, Hashable {
Expand Down

0 comments on commit 9d7b7d5

Please sign in to comment.