comments removed
This commit is contained in:
parent
e591cbd5c8
commit
d97e173a69
|
@ -154,7 +154,7 @@ const PageViews: React.FunctionComponent<IPageViewsProps> = (props) => {
|
|||
}
|
||||
}
|
||||
fetchaData(selTimeSpan, selTimeInterval)
|
||||
.catch(console.error); //KK:todo:logger
|
||||
.catch(console.error);
|
||||
}, [selTimeSpan, selTimeInterval]);
|
||||
|
||||
React.useEffect(() => {
|
||||
|
|
|
@ -163,7 +163,7 @@ const PerformanceStatistics: React.FunctionComponent<IPerformanceProps> = (props
|
|||
}
|
||||
}
|
||||
fetchData(startDate, endDate)
|
||||
.catch(console.error); //KK:todo:logger
|
||||
.catch(console.error);
|
||||
|
||||
}, [startDate, endDate]);
|
||||
|
||||
|
|
|
@ -203,7 +203,7 @@ const UserStatistics: React.FunctionComponent<IUserStatisticsProps> = (props) =>
|
|||
}
|
||||
}
|
||||
fetchData(selTimeSpan, startDate, endDate)
|
||||
.catch(console.error); //KK:todo:logger
|
||||
.catch(console.error);
|
||||
|
||||
}, [selTimeSpan, startDate, endDate]);
|
||||
|
||||
|
|
Loading…
Reference in New Issue