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