diff --git a/src/stores/useWeatherStore.js b/src/stores/useWeatherStore.js index 862f687..cd58d8e 100644 --- a/src/stores/useWeatherStore.js +++ b/src/stores/useWeatherStore.js @@ -35,7 +35,6 @@ export const useWeatherStore = defineStore('weather', () => { const resData = res.data.data; const raw = resData.weatherInfo; const data = JSON.parse(raw); - console.log(data.list) if (!data || !Array.isArray(data.list) || data.list.length === 0) { console.error('날씨 데이터 형식 오류 또는 없음:', data); return;