From ab5cc8649330ec09275d9aca345bdf1da2104cc5 Mon Sep 17 00:00:00 2001 From: today-is-first Date: Thu, 28 Nov 2024 15:10:10 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=A1=9C=EB=B9=84=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20settingSection=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/lobbyPage/SettingSection.tsx | 25 ------------------- .../frontend/src/pages/lobbyPage/index.tsx | 5 ---- 2 files changed, 30 deletions(-) delete mode 100644 packages/frontend/src/components/lobbyPage/SettingSection.tsx diff --git a/packages/frontend/src/components/lobbyPage/SettingSection.tsx b/packages/frontend/src/components/lobbyPage/SettingSection.tsx deleted file mode 100644 index 876197a7..00000000 --- a/packages/frontend/src/components/lobbyPage/SettingSection.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import MikeOn from '@/assets/images/MikeOn.svg?react'; -import MikeOff from '@/assets/images/MikeOff.svg?react'; -import CameraOn from '@/assets/images/CameraOn.svg?react'; -import CameraOff from '@/assets/images/CameraOff.svg?react'; - -export default function SettingSection() { - return ( - <> -
-
- - - - 마이크 -
-
- - - - 마이크 -
-
- - ); -} diff --git a/packages/frontend/src/pages/lobbyPage/index.tsx b/packages/frontend/src/pages/lobbyPage/index.tsx index f86652e0..6d33354b 100644 --- a/packages/frontend/src/pages/lobbyPage/index.tsx +++ b/packages/frontend/src/pages/lobbyPage/index.tsx @@ -1,13 +1,11 @@ import { useEffect } from 'react'; import { useSocketStore } from '@/states/store/socketStore'; -import { useAuthStore } from '@/states/store/authStore'; import BackgroundImage from '@/components/layout/BackgroundImage'; import MainLogo from '@/assets/images/MainLogo.svg?react'; import RoomCreationButton from '@/components/lobbyPage/RoomCreationButton'; import RoomJoinButton from '@/components/lobbyPage/RoomJoinButton'; import VideoAudioTestButton from '@/components/lobbyPage/VideoAudioTestButton'; import Header from '@/components/layout/Header'; -import SettingSection from '@/components/lobbyPage/SettingSection'; import { useRoomStore } from '@/states/store/roomStore'; import { useChatStore } from '@/states/store/chatStore'; import { useLocalStreamStore } from '@/states/store/localStreamStore'; @@ -50,9 +48,6 @@ export default function LobbyPage() { -
- -
);