diff --git a/src/pages/Participants/ParticipantsView.tsx b/src/pages/Participants/ParticipantsView.tsx index 61e3163e..4c4192be 100644 --- a/src/pages/Participants/ParticipantsView.tsx +++ b/src/pages/Participants/ParticipantsView.tsx @@ -84,21 +84,27 @@ const ParticipantsView = () => { * token의 값이 있든 없든 항상 토큰이 있는 값을 보여주고 있음. 처리 필요 */ useEffect(() => { - if (localStorage.getItem('EXIT_LOGIN_TOKEN') === null) { - setIsToken(false); - console.log('로컬스토리지 확인', localStorage.getItem('EXIT_LOGIN_TOKEN')); - console.log('isTOken', isToken); - console.log('if'); - } else { - console.log( - 'else 로컬스토리지 확인(로컬스토리지 있어야함)', - localStorage.getItem('EXIT_LOGIN_TOKEN'), - ); - setIsToken(true); - console.log('isTOken', isToken); - console.log('else'); - } - }, [isToken]); + + + setIsToken(localStorage.getItem('EXIT_LOGIN_TOKEN') !== null); + // if (localStorage.getItem('EXIT_LOGIN_TOKEN') === null) { + // setIsToken(false); + // console.log('로컬스토리지 확인', localStorage.getItem('EXIT_LOGIN_TOKEN')); + // console.log('isTOken', isToken); + // console.log('if'); + // } else { + // console.log( + // 'else 로컬스토리지 확인(로컬스토리지 있어야함)', + // localStorage.getItem('EXIT_LOGIN_TOKEN'), + // ); + // setIsToken(true); + // console.log('isTOken', isToken); + // console.log('else'); + // } + }, []); + + + const handleClickRoom = async (body: string | null) => { console.log('입장 버튼 클릭! 그리고 초대 코드', invitationCode);