From 05c560285ac4ed6957c43d247d5e330fa2dcf506 Mon Sep 17 00:00:00 2001 From: evlist Date: Sun, 9 Oct 2022 20:59:43 +0200 Subject: [PATCH] Disabling pointer events on GPX tracks. --- src/components/map/Gpx.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/map/Gpx.tsx b/src/components/map/Gpx.tsx index e3a8e7b..f395a9a 100644 --- a/src/components/map/Gpx.tsx +++ b/src/components/map/Gpx.tsx @@ -40,7 +40,9 @@ const Gpx: React.FC<{ gpx: any }> = (props) => { )}`; }, ''); - return ; + return ( + + ); }; export default Gpx;