Skip to content

Commit 236e87f

Browse files
authored
[LOOP-4882] Mute App Sounds iOS Permissions Button Changes
2 parents e3b3eed + 0c9cf49 commit 236e87f

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

Loop/Views/NotificationsCriticalAlertPermissionsView.swift

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ public struct NotificationsCriticalAlertPermissionsView: View {
6565
}
6666
}
6767
}
68-
// MARK: Disabled for Formative 3. To be Re-enabled once design has provided an appropriate screen to link to.
69-
// notificationAndCriticalAlertPermissionSupportSection
68+
notificationAndCriticalAlertPermissionSupportSection
7069
}
7170
.insetGroupedListStyle()
7271
.navigationBarTitle(Text(NSLocalizedString("iOS Permissions", comment: "Notification & Critical Alert Permissions screen title")))
@@ -139,8 +138,17 @@ extension NotificationsCriticalAlertPermissionsView {
139138

140139
private var notificationAndCriticalAlertPermissionSupportSection: some View {
141140
Section(header: SectionHeader(label: NSLocalizedString("Support", comment: "Section title for Support")).padding(.leading, -16).padding(.bottom, 4)) {
142-
NavigationLink(destination: Text("Get help with iOS Permissions")) {
141+
// MARK: TO be reverted to NavigationLink once we have a page to link to
142+
HStack {
143143
Text(NSLocalizedString("Get help with iOS Permissions", comment: "Get help with iOS Permissions support button text"))
144+
145+
Spacer()
146+
147+
Image(systemName: "chevron.forward")
148+
.resizable()
149+
.aspectRatio(contentMode: .fit)
150+
.frame(height: 12)
151+
.foregroundStyle(.secondary)
144152
}
145153
}
146154
}

0 commit comments

Comments
 (0)