We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
일정 수정 버튼 클릭 시 헤당 유저가 선택한 약속 정보만 가져오는 것이 아니라 해당 방 전체의 정보를 가져온다. 이로인해 아래의 문제가 발생할 수 있다.
ResultPage.tsx - navigateModifyPage 함수 내부는 약속 등록 페이지로 navigate하고있다. 여기서 아래의 코드로 방 결과를 호출하고있다.
ResultPage.tsx
navigateModifyPage
useEffect(() => { (async () => { // !! 특정 유저 정보만 얻어오는 것이 아닌 약속방 자체의 정보를 얻어오고있다. const res = await getRoomData({ id: params.code ?? '' }); setRoomInfo(res); }, []);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
증상
일정 수정 버튼 클릭 시 헤당 유저가 선택한 약속 정보만 가져오는 것이 아니라 해당 방 전체의 정보를 가져온다.
이로인해 아래의 문제가 발생할 수 있다.
원인
ResultPage.tsx
-navigateModifyPage
함수 내부는 약속 등록 페이지로 navigate하고있다.여기서 아래의 코드로 방 결과를 호출하고있다.
The text was updated successfully, but these errors were encountered: