Skip to content

Commit

Permalink
explicitily mark we're using background location
Browse files Browse the repository at this point in the history
  • Loading branch information
CDFN committed Apr 29, 2024
1 parent 8fceead commit 0c6c30b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"message": "Enable"
},
"Modal.GPSDisable.description": {
"message": "To create a Track CoMapeo needs access to your location and GPS."
"message": "To create a Track CoMapeo needs access to your location (also while running in background) and GPS."
},
"Modal.GPSDisable.title": {
"message": "GPS Disabled"
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/Navigation/ScreenGroups/AppScreens.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const HomeTabs = () => {
tabBarIcon: CameraTabBarIcon,
}}
/>
{process.env.FEATURE_TRACKS && (
{true && (
<Tab.Screen
name={TabName.Tracking}
options={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const m = defineMessages({
gpsDisabledDescription: {
id: 'Modal.GPSDisable.description',
defaultMessage:
'To create a Track CoMapeo needs access to your location and GPS.',
'To create a Track CoMapeo needs access to your location (also while running in background) and GPS.',
},
gpsDisabledButtonText: {
id: 'Modal.GPSDisable.button',
Expand Down

0 comments on commit 0c6c30b

Please sign in to comment.