From 56d12d6e8feaaab62cba4fa5a7635df2ab912003 Mon Sep 17 00:00:00 2001 From: moonhuicheol Date: Mon, 24 Feb 2025 19:37:09 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A1=9C=EA=B3=A0=20=EC=9D=B4=EB=8F=99?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 +++ src/components/layout/header/Header.tsx | 2 +- src/pages/game/gameRoomList.tsx | 2 -- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index cc70c8f..e97c338 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,9 @@ # $ git config --global mergetool.keepBackup false *.orig +#README +README.md + # Created by git when using merge tools for conflicts *.BACKUP.* *.BASE.* diff --git a/src/components/layout/header/Header.tsx b/src/components/layout/header/Header.tsx index 213b69b..4b5062d 100644 --- a/src/components/layout/header/Header.tsx +++ b/src/components/layout/header/Header.tsx @@ -17,7 +17,7 @@ export default function Header() { <> - + diff --git a/src/pages/game/gameRoomList.tsx b/src/pages/game/gameRoomList.tsx index e5df6f4..c999497 100644 --- a/src/pages/game/gameRoomList.tsx +++ b/src/pages/game/gameRoomList.tsx @@ -16,9 +16,7 @@ interface IGameRoom { export default function GameRoomList() { const { openModal } = useModal(); const { data: gameRooms } = useGetGameRoomList(); - console.log("gameRoomsâś…", gameRooms); const accessToken = localStorage.getItem("accessToken"); - console.log(accessToken); const onClickModalOpen = () => { if (!accessToken || accessToken === null) {