From 544cb1687d55b744564e4238e173e28655f3ca44 Mon Sep 17 00:00:00 2001 From: Hrishikesh Vaipurkar Date: Wed, 27 Nov 2024 13:14:24 +0100 Subject: [PATCH] fix: SW-1010 Fixed default open state --- components/GuestsRoomsPicker/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/GuestsRoomsPicker/index.tsx b/components/GuestsRoomsPicker/index.tsx index 59be157df..6f3704f1c 100644 --- a/components/GuestsRoomsPicker/index.tsx +++ b/components/GuestsRoomsPicker/index.tsx @@ -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