From b59820c69d621fe8ea05d25f30a5261c206a4dc0 Mon Sep 17 00:00:00 2001 From: "Moh. Law. Jr" Date: Tue, 6 May 2025 00:19:23 +0100 Subject: [PATCH] Fixed Issue : #3756 ( Mapbox [error] ViewTagResolver | view: null found with tag ) It's a fix for this issue : https://github.com/rnmapbox/maps/issues/3756 --- src/components/MapView.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/MapView.tsx b/src/components/MapView.tsx index 13042336fb..105880ee06 100644 --- a/src/components/MapView.tsx +++ b/src/components/MapView.tsx @@ -1171,6 +1171,14 @@ class MapView extends NativeBridgeComponent( } } + if (mapView == null) { + mapView = ( + + {this.props.children} + + ) + } + return (