From 0a0c7b424474c57f46e57c2445e4c9fa50850cbf Mon Sep 17 00:00:00 2001 From: dyhj625 Date: Mon, 7 Apr 2025 15:38:37 +0900 Subject: [PATCH] . --- src/stores/useWeatherStore.js | 1 - 1 file changed, 1 deletion(-) 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;