@umituz/react-native-location 1.0.8 → 1.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-location",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "Device location services for React Native with GPS, permissions, caching, and reverse geocoding",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -201,7 +201,7 @@ export class LocationService {
201
201
  return status.status;
202
202
  } catch (error) {
203
203
  this.logError("Error getting permission status:", error);
204
- return "undetermined";
204
+ return Location.PermissionStatus.UNDETERMINED;
205
205
  }
206
206
  }
207
207