From 4a100af10e6c46e2f6e0dbc7d5b2e053e760f2c7 Mon Sep 17 00:00:00 2001 From: JAEMOON Date: Sat, 4 Nov 2023 23:16:03 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20userInfo=20=EB=A9=94=EC=9D=B8=20?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=98=A4=EB=A5=98=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/index.tsx b/pages/index.tsx index ccd9ca2..5ea1be1 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -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); } }