|
|
@@ -3305,8 +3305,10 @@ private extension ViewController {
|
|
|
titleRowSpacer.setContentCompressionResistancePriority(.defaultLow, for: .horizontal)
|
|
|
|
|
|
titleRow.addArrangedSubview(titleLabel)
|
|
|
- titleRow.addArrangedSubview(makeSchedulePageAddButton())
|
|
|
- titleRow.setCustomSpacing(12, after: titleLabel)
|
|
|
+ if googleOAuth.loadTokens() != nil && storeKitCoordinator.hasPremiumAccess {
|
|
|
+ titleRow.addArrangedSubview(makeSchedulePageAddButton())
|
|
|
+ titleRow.setCustomSpacing(12, after: titleLabel)
|
|
|
+ }
|
|
|
titleRow.addArrangedSubview(titleRowSpacer)
|
|
|
container.addArrangedSubview(titleRow)
|
|
|
|