Merge branch 'develop' into johannes/find-myself

This commit is contained in:
Johannes Marbach
2023-02-13 20:16:04 +01:00
committed by GitHub
612 changed files with 3608 additions and 2769 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ export const useMap = ({ interactive, bodyId, onError }: UseMapProps): MapLibreM
useEffect(
() => {
try {
setMap(createMap(interactive, bodyId, onError));
setMap(createMap(!!interactive, bodyId, onError));
} catch (error) {
onError?.(error);
}