// API 호출 및 리뷰 목록 가져오기async function fetchReviews(restaurantId) { try { const response = await fetch( `/api/users/me/restaurants/${restaurantId}/reviews`, ); if (!response.ok) { throw new Error('네트워크 응답이 좋지 않습니다.'); } const data = await response.json(); const reviews = data.data; // // 리뷰가 배열인지 확인 if (!Array.isArray(reviews)) { throw new Error('리뷰 데이터가 배열..