diff --git a/src/utils/geolocation.js b/src/utils/geolocation.js deleted file mode 100644 index 57e412e..0000000 --- a/src/utils/geolocation.js +++ /dev/null @@ -1,5 +0,0 @@ -export const getUserLocation = callback => { - if (!navigator || !navigator.geolocation) return; - - navigator.geolocation.getCurrentPosition(callback); -};