hide accessibility for empty rectangles in RoomSelectionScreen

This commit is contained in:
Mauro Romito
2025-07-21 14:03:22 +02:00
committed by Mauro
parent 4a08b3e23a
commit b1fea7c8be

View File

@@ -57,6 +57,7 @@ struct RoomSelectionScreen: View {
private var emptyRectangle: some View {
Rectangle()
.frame(width: 0, height: 0)
.accessibilityHidden(true)
}
}