Skip to content

Commit

Permalink
[fix] userInfo 메인 페이지 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
KinDDoGGang committed Nov 4, 2023
1 parent 52f4bef commit 4a100af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ function Home() {
if (resultRooms) {
for (const room of resultRooms) {
const roomId = room?.id;
if (resultLikedRooms && resultLikedRooms.some((likedRoom) => likedRoom?.id === roomId)) {
if (resultLikedRooms && resultLikedRooms.some((_likedRoom) => _likedRoom?.id === roomId)) {
roomIds.push(roomId);
}
}
Expand Down

0 comments on commit 4a100af

Please sign in to comment.