From e647f083b74cb6c439dc3786fdd338996d3e2e66 Mon Sep 17 00:00:00 2001 From: Manuel Calavera Date: Tue, 29 Oct 2019 16:22:39 -0700 Subject: [PATCH] fix: full screen map mode markers --- src/v2/components/UI/MapTooltip/index.jsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/v2/components/UI/MapTooltip/index.jsx b/src/v2/components/UI/MapTooltip/index.jsx index 989d8122..643b126e 100644 --- a/src/v2/components/UI/MapTooltip/index.jsx +++ b/src/v2/components/UI/MapTooltip/index.jsx @@ -8,7 +8,12 @@ type MapTooltipProps = { }; const MapTooltip = ({title, ...rest}: MapTooltipProps & TooltipProps) => ( - + ); export default MapTooltip;