Skip to content

Commit

Permalink
Merge pull request #46 from isfit/15-android-map
Browse files Browse the repository at this point in the history
fix: enabled map on Android (#15)
  • Loading branch information
jonafoll authored Oct 22, 2024
2 parents 2b7eb3d + d5ff171 commit f91bc01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion App.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function HomeTabs() {
}}
/>
{/* Map is bugged on Android */}
{Platform.OS === 'ios' ? (
{Platform.OS === 'ios' || 'android' ? (
<Tab.Screen
name='Explore'
component={MapsStackScreen}
Expand Down

0 comments on commit f91bc01

Please sign in to comment.