fix: SW-1010 Fixed default open state

This commit is contained in:
Hrishikesh Vaipurkar
2024-11-27 13:14:24 +01:00
parent 65f3ac7325
commit 544cb1687d

View File

@@ -26,7 +26,7 @@ export default function GuestsRoomsPickerForm() {
const checkIsDesktop = useMediaQuery("(min-width: 1367px)")
const [isDesktop, setIsDesktop] = useState(true)
const [isOpen, setIsOpen] = useState(true)
const [isOpen, setIsOpen] = useState(false)
const [containerHeight, setContainerHeight] = useState(0)
const childCount = rooms[0] ? rooms[0].child.length : 0 // ToDo Update for multiroom later