Skip to content

Commit

Permalink
update: remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyamaro15 committed Jun 14, 2024
1 parent 154a25f commit cec8a1f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/js/components/report/ReportChartsComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ const ChartModule = (props: ChartModuleProps): JSX.Element => {

React.useEffect(() => {
setChartLoading(true);
console.log('moduleInfoData', moduleInfoData);
if (moduleInfoData?.widgetId) {
const stDate = moduleInfoData?.minDate ? moduleInfoData?.minDate : gladStart;
const enDate = moduleInfoData?.maxDate ? moduleInfoData?.maxDate : gladEnd;
Expand All @@ -139,8 +138,6 @@ const ChartModule = (props: ChartModuleProps): JSX.Element => {
sqlString: moduleInfoData.sqlString,
});

console.log('console.log', { widgetURL, moduleInfoData });

fetch(widgetURL)
.then((response: any) => response.json())
.then((analysisMod: any) => {
Expand Down

0 comments on commit cec8a1f

Please sign in to comment.