diff --git a/src/components/map.tsx b/src/components/map.tsx index 16e1e8ae..dd60ac64 100644 --- a/src/components/map.tsx +++ b/src/components/map.tsx @@ -151,11 +151,17 @@ const Map = forwardRef((props, ref) => { [props.style] ); + const CHILD_CONTAINER_STYLE = { + height: '100%' + }; + return (
{mapInstance && ( -
{props.children}
+
+ {props.children} +
)}