From b1d2206176785abc65455cd12866a45baa5a6614 Mon Sep 17 00:00:00 2001 From: jollygrin Date: Sat, 7 Sep 2024 18:38:09 +0200 Subject: [PATCH] remove logs --- src/components/atoms/mock-cards/atlas.tsx | 1 - src/components/organisms/GameBoard/useHandleDrag.ts | 7 ------- src/pages/game.tsx | 5 ----- src/pages/index.tsx | 1 - 4 files changed, 14 deletions(-) diff --git a/src/components/atoms/mock-cards/atlas.tsx b/src/components/atoms/mock-cards/atlas.tsx index 89ba721..3fe5fa7 100644 --- a/src/components/atoms/mock-cards/atlas.tsx +++ b/src/components/atoms/mock-cards/atlas.tsx @@ -20,7 +20,6 @@ export const CardAtlas = ({ }, [isPressed]); const show = preview && isHovering; - console.log(img); return ( ; } diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 8abe7c9..93b5b0e 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -11,7 +11,6 @@ const body = `calc(100vh - ${nav} - ${footer})`; export default function Home() { const [dropped, setIsDropped] = useState(false); - console.info(dropped); function handleDragEnd(event: DragEndEvent) { if (event.over && event.over.id === "droppable") {