Skip to content

Commit 72b88fd

Browse files
Update BarGraphComparison.tsx
1 parent b7984c0 commit 72b88fd

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/app/components/StateRoute/PerformanceVisx/BarGraphComparison.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -144,19 +144,14 @@ const BarGraphComparison = (props: BarGraphComparisonProps): JSX.Element => {
144144
});
145145

146146
const handleSeriesChange = (event: Event) => {
147-
console.log('handleSeriesChangeTriggered');
148147
if (!event) {
149-
console.log('event not found, no change in series');
150148
return;
151149
}
152150
const target = event.target as HTMLInputElement;
153151
if (target) {
154-
console.log('handleSeriesChange setSeries target.value', target.value);
155152
setSeries(target.value);
156153
setAction(false);
157-
console.log('setSeries and setAction changed');
158154
}
159-
console.log('setSeries and setAction NOT changed');
160155
};
161156

162157
const handleClose = () => {
@@ -168,11 +163,9 @@ const BarGraphComparison = (props: BarGraphComparisonProps): JSX.Element => {
168163
};
169164

170165
const handleActionChange = (event: Event) => {
171-
console.log('handleActionChange Triggered THIS IS THE ONE WE WANT');
172166
const target = event.target as HTMLInputElement;
173167
if (!target.value) return;
174168
if (target) {
175-
console.log('handleActionChange setSeries target.value', target.value);
176169
setAction(target.value);
177170
setSeries(false);
178171
}

0 commit comments

Comments
 (0)