Skip to content

Commit

Permalink
Restrict access
Browse files Browse the repository at this point in the history
Should these be full private?
  • Loading branch information
jamesrb1 committed Aug 9, 2024
1 parent bf9d11c commit dfbb54b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ import RevenueCat

// @PublicForExternalTesting
@Published
var state: CustomerCenterViewState {
private(set) var state: CustomerCenterViewState {
didSet {
if case let .error(stateError) = state {
self.error = stateError
}
}
}
@Published
var configuration: CustomerCenterConfigData?
private(set) var configuration: CustomerCenterConfigData?

var isLoaded: Bool {
return state != .notLoaded && configuration != nil
Expand Down

0 comments on commit dfbb54b

Please sign in to comment.