diff --git a/samples/react-appinsights-dashboard/src/common/components/PageViews.tsx b/samples/react-appinsights-dashboard/src/common/components/PageViews.tsx index d02c8eeac..6d014537e 100644 --- a/samples/react-appinsights-dashboard/src/common/components/PageViews.tsx +++ b/samples/react-appinsights-dashboard/src/common/components/PageViews.tsx @@ -154,7 +154,7 @@ const PageViews: React.FunctionComponent = (props) => { } } fetchaData(selTimeSpan, selTimeInterval) - .catch(console.error); //KK:todo:logger + .catch(console.error); }, [selTimeSpan, selTimeInterval]); React.useEffect(() => { diff --git a/samples/react-appinsights-dashboard/src/common/components/PerformanceStatistics.tsx b/samples/react-appinsights-dashboard/src/common/components/PerformanceStatistics.tsx index cfdae806f..4f23f8f9a 100644 --- a/samples/react-appinsights-dashboard/src/common/components/PerformanceStatistics.tsx +++ b/samples/react-appinsights-dashboard/src/common/components/PerformanceStatistics.tsx @@ -163,7 +163,7 @@ const PerformanceStatistics: React.FunctionComponent = (props } } fetchData(startDate, endDate) - .catch(console.error); //KK:todo:logger + .catch(console.error); }, [startDate, endDate]); diff --git a/samples/react-appinsights-dashboard/src/common/components/UserStatistics.tsx b/samples/react-appinsights-dashboard/src/common/components/UserStatistics.tsx index 6243828d0..ea3a33f4e 100644 --- a/samples/react-appinsights-dashboard/src/common/components/UserStatistics.tsx +++ b/samples/react-appinsights-dashboard/src/common/components/UserStatistics.tsx @@ -203,7 +203,7 @@ const UserStatistics: React.FunctionComponent = (props) => } } fetchData(selTimeSpan, startDate, endDate) - .catch(console.error); //KK:todo:logger + .catch(console.error); }, [selTimeSpan, startDate, endDate]);