Skip to content

Commit 2f56a34

Browse files
committed
Fix condition
1 parent 768a673 commit 2f56a34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/maps/src/components/MapMarker.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export function renderMarker(
8080
}
8181

8282
const shouldUseDefaultIconImplemnation =
83-
Platform.OS !== "android" || !androidUseDefaultIconImplementation;
83+
Platform.OS === "android" && androidUseDefaultIconImplementation;
8484

8585
return (
8686
<MapMarkerComponent

0 commit comments

Comments
 (0)