File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
src/app/components/StateRoute/PerformanceVisx Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -144,19 +144,14 @@ const BarGraphComparison = (props: BarGraphComparisonProps): JSX.Element => {
144
144
} ) ;
145
145
146
146
const handleSeriesChange = ( event : Event ) => {
147
- console . log ( 'handleSeriesChangeTriggered' ) ;
148
147
if ( ! event ) {
149
- console . log ( 'event not found, no change in series' ) ;
150
148
return ;
151
149
}
152
150
const target = event . target as HTMLInputElement ;
153
151
if ( target ) {
154
- console . log ( 'handleSeriesChange setSeries target.value' , target . value ) ;
155
152
setSeries ( target . value ) ;
156
153
setAction ( false ) ;
157
- console . log ( 'setSeries and setAction changed' ) ;
158
154
}
159
- console . log ( 'setSeries and setAction NOT changed' ) ;
160
155
} ;
161
156
162
157
const handleClose = ( ) => {
@@ -168,11 +163,9 @@ const BarGraphComparison = (props: BarGraphComparisonProps): JSX.Element => {
168
163
} ;
169
164
170
165
const handleActionChange = ( event : Event ) => {
171
- console . log ( 'handleActionChange Triggered THIS IS THE ONE WE WANT' ) ;
172
166
const target = event . target as HTMLInputElement ;
173
167
if ( ! target . value ) return ;
174
168
if ( target ) {
175
- console . log ( 'handleActionChange setSeries target.value' , target . value ) ;
176
169
setAction ( target . value ) ;
177
170
setSeries ( false ) ;
178
171
}
You can’t perform that action at this time.
0 commit comments