@@ -6,7 +6,7 @@ import IntervieweeVideo from '@components/IntervieweeVideo/IntervieweeVideo';
66import Video from '@components/@shared/Video/Video' ;
77import useSafeNavigate from '@hooks/useSafeNavigate' ;
88import usePreventLeave from '@hooks/usePreventLeave' ;
9- import { webRTCStreamSelector , webRTCUserMapState } from '@store/webRTC.store' ;
9+ import { webRTCStreamSelector } from '@store/webRTC.store' ;
1010import { currentVideoTimeState } from '@store/currentVideoTime.store' ;
1111import { docsUUIDState , userRoleSelector } from '@store/interview.store' ;
1212
@@ -20,15 +20,13 @@ import { DocsReqDtoType } from '@customType/dto';
2020import { intervieweeWrapperStyle } from './Interviewee.style' ;
2121import BottomBar from '@components/BottomBar/BottomBar' ;
2222import RoundButton from '@components/@shared/RoundButton/RoundButton' ;
23- import theme from '@styles/theme' ;
2423
2524const Interviewee = ( ) => {
2625 usePreventLeave ( ) ;
2726 const { safeNavigate } = useSafeNavigate ( ) ;
2827 const { startStream, stopStream } = mediaStreamer ( ) ;
2928
3029 const { interviewee, interviewerList } = useRecoilValue ( userRoleSelector ) ;
31- const webRTCUserMap = useRecoilValue ( webRTCUserMapState ) ;
3230 const currentVideoTime = useRecoilValue ( currentVideoTimeState ) ;
3331 const streamList = useRecoilValue ( webRTCStreamSelector ) ;
3432 const setDocsUUID = useSetRecoilState ( docsUUIDState ) ;
@@ -74,14 +72,12 @@ const Interviewee = () => {
7472 const endInterviewBtn = (
7573 < RoundButton
7674 style = { {
77- backgroundColor : theme . colors . primary ,
78- width : 200 ,
75+ width : 160 ,
7976 height : 50 ,
80- color : theme . colors . white ,
8177 } }
8278 onClick = { hadleEndInterview }
8379 >
84- < div > λ©΄μ μ’
λ£</ div >
80+ < span > λ©΄μ μ’
λ£</ span >
8581 </ RoundButton >
8682 ) ;
8783
0 commit comments