File tree 2 files changed +0
-4
lines changed
2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ const Sliver: React.FC = () => {
33
33
graphData . forEach ( ( car , carIndex ) => {
34
34
car . forEach ( ( dataPoint ) => {
35
35
const { time, distance, velocity } = dataPoint ;
36
- console . log ( distance . toString ( ) === "NaN" ) ;
37
36
csvContent += `${ carIndex } ,${ time } ,${
38
37
distance . toString ( ) === "NaN" ? 0 : distance
39
38
} ,${ velocity } \n`;
Original file line number Diff line number Diff line change @@ -51,14 +51,11 @@ const useResize = (): ResizeReturnProps => {
51
51
newHeight >= ( window . innerHeight / 5 ) * 2 &&
52
52
newHeight <= ( window . innerHeight / 8 ) * 5
53
53
) {
54
- console . log ( newHeight ) ;
55
54
setHeight ( newHeight ) ;
56
55
if ( newHeight > ( window . innerHeight / 9 ) * 4 ) {
57
56
if ( newHeight >= ( window . innerHeight / 5 ) * 3 ) {
58
57
setSize ( "L" ) ;
59
- console . log ( "l" ) ;
60
58
} else {
61
- console . log ( "m" , ( window . innerHeight / 9 ) * 5 , newHeight ) ;
62
59
setSize ( "M" ) ;
63
60
}
64
61
} else {
You can’t perform that action at this time.
0 commit comments