From eda1270a3c6989f9beedd681ae99edefa5e75c19 Mon Sep 17 00:00:00 2001 From: evlist Date: Tue, 24 Jan 2023 11:48:02 +0100 Subject: [PATCH] Commenting console.log --- src/components/gpx/styles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/gpx/styles.ts b/src/components/gpx/styles.ts index d39bde3..1f54c6c 100644 --- a/src/components/gpx/styles.ts +++ b/src/components/gpx/styles.ts @@ -212,7 +212,7 @@ const styles = { }; }, getStyle: memoize((params: any) => { - console.log({ caller: 'getStyle', params }); + // console.log({ caller: 'getStyle', params }); const { isSelected, feature, zoom } = params; const styles = [ new Style({ stroke: isSelected ? trksegStrokeSel : trksegStroke }), @@ -263,7 +263,7 @@ const styles = { }; }, getStyle: memoize((params: any) => { - console.log({ caller: 'getStyle', params }); + // console.log({ caller: 'getStyle', params }); const { isSelected } = params; return new Style({ stroke: isSelected ? rteStrokeSel : rteStroke }); }, memoizeOptions),