diff --git a/src/components/order-form/form/location/map/map.tsx b/src/components/order-form/form/location/map/map.tsx index 05a801f..5b68a68 100644 --- a/src/components/order-form/form/location/map/map.tsx +++ b/src/components/order-form/form/location/map/map.tsx @@ -31,8 +31,22 @@ export const MapComponent: FC<{ } }, [selectedLocation]); + const [windowWidth, setWindowWidth] = useState(window.innerWidth); + useEffect(() => { + const handleResize = () => { + setWindowWidth(window.innerWidth); + }; + + window.addEventListener('resize', handleResize); + + return () => { + window.removeEventListener('resize', handleResize); + }; + }, []); + return (