Hide accesibility for decorative onboarding image

This commit is contained in:
Mauro Romito
2025-06-09 20:34:48 +02:00
committed by Mauro
parent 681ec8ee38
commit 88a93fed5f

View File

@@ -40,7 +40,11 @@ struct NotificationPermissionsScreen: View {
.multilineTextAlignment(.center)
.foregroundColor(.compound.textSecondary)
Asset.Images.notificationsPromptGraphic.swiftUIImage.resizable().aspectRatio(contentMode: .fit)
Asset.Images.notificationsPromptGraphic
.swiftUIImage
.resizable()
.aspectRatio(contentMode: .fit)
.accessibilityHidden(true)
}
}