I'm seeing an this Violation increasing continuously on the page [Violation] Only request geolocation information in response to a user gesture.

This is my usage of usePosition
const {
latitude: userLatitude,
longitude: userLongitude,
error: geoLocationError,
} = usePosition(true, {
enableHighAccuracy: CONSTANTS.locationServices.enableHighAccuracy, // true
timeout: CONSTANTS.locationServices.timeout, // 60000
});
This seems to only be happening in Chrome. Safari and Firefox aren't reporting the same violation. I did notice in Firefox though that if I didn't check the box to remember me allowing location services the box repeatedly popped up to ask me to allow. Is this related?
I'm seeing an this
Violationincreasing continuously on the page[Violation] Only request geolocation information in response to a user gesture.This is my usage of
usePositionThis seems to only be happening in Chrome. Safari and Firefox aren't reporting the same violation. I did notice in Firefox though that if I didn't check the box to remember me allowing location services the box repeatedly popped up to ask me to allow. Is this related?