Skip to content

Commit 2f3367b

Browse files
committed
Removed console logs
1 parent 194cab6 commit 2f3367b

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

components/sliver/Sliver.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ const Sliver: React.FC = () => {
3333
graphData.forEach((car, carIndex) => {
3434
car.forEach((dataPoint) => {
3535
const { time, distance, velocity } = dataPoint;
36-
console.log(distance.toString() === "NaN");
3736
csvContent += `${carIndex},${time},${
3837
distance.toString() === "NaN" ? 0 : distance
3938
},${velocity}\n`;

hooks/useResize.ts

-3
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,11 @@ const useResize = (): ResizeReturnProps => {
5151
newHeight >= (window.innerHeight / 5) * 2 &&
5252
newHeight <= (window.innerHeight / 8) * 5
5353
) {
54-
console.log(newHeight);
5554
setHeight(newHeight);
5655
if (newHeight > (window.innerHeight / 9) * 4) {
5756
if (newHeight >= (window.innerHeight / 5) * 3) {
5857
setSize("L");
59-
console.log("l");
6058
} else {
61-
console.log("m", (window.innerHeight / 9) * 5, newHeight);
6259
setSize("M");
6360
}
6461
} else {

0 commit comments

Comments
 (0)