hide accessibility when the home screen cell is in placeholder mode

This commit is contained in:
Mauro Romito
2025-07-21 11:57:14 +02:00
committed by Mauro
parent 35c95bc265
commit b02e676b09

View File

@@ -43,6 +43,7 @@ struct HomeScreenRoomCell: View {
}
.buttonStyle(HomeScreenRoomCellButtonStyle(isSelected: isSelected))
.accessibilityIdentifier(A11yIdentifiers.homeScreen.roomName(room.name))
.accessibilityHidden(redactionReasons.contains(.placeholder) ? true : false)
}
@ViewBuilder @MainActor