Skip to content

Commit

Permalink
Change actions var to open for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Qata committed Jul 5, 2021
1 parent affb703 commit 35484eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/RecombinePackage/Store/BaseStore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public class BaseStore<State: Equatable, RawAction, RefinedAction>: StoreProtoco
.store(in: &cancellables)
}

public var actions: AnyPublisher<Action, Never> {
open var actions: AnyPublisher<Action, Never> {
Publishers.Merge(
_rawActions.map(Action.raw),
_postMiddlewareRefinedActions.flatMap(\.publisher).map(Action.refined)
Expand Down

0 comments on commit 35484eb

Please sign in to comment.