We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f451e3e commit 9873a0dCopy full SHA for 9873a0d
mobile/components/OHeatMap/OHeatMap.tsx
@@ -98,6 +98,8 @@ export const OHeatMap: React.FC<OHeatMapProps> = React.memo(
98
default: 50,
99
});
100
101
+ // @dev Android crashes even with empty array.
102
+ if (!locationsFromOthers?.length) return;
103
return (
104
<Heatmap
105
testID={TestData.encounters.heatMapComponent}
0 commit comments