Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import Subscription
public protocol SubscriptionFeatureAvailability {
var isFeatureAvailable: Bool { get }
var isSubscriptionPurchaseAllowed: Bool { get }
var usesUnifiedFeedbackForm: Bool { get }
}

public final class DefaultSubscriptionFeatureAvailability: SubscriptionFeatureAvailability {
Expand Down Expand Up @@ -53,10 +52,6 @@ public final class DefaultSubscriptionFeatureAvailability: SubscriptionFeatureAv
return isPurchaseAllowed || isInternalUser
}

public var usesUnifiedFeedbackForm: Bool {
privacyConfigurationManager.privacyConfig.isSubfeatureEnabled(PrivacyProSubfeature.useUnifiedFeedback)
}

// MARK: - Conditions

private var isInternalUser: Bool {
Expand Down
Loading