diff --git a/src/stores/loadingStore.js b/src/stores/loadingStore.js index 987322a..7d12a61 100644 --- a/src/stores/loadingStore.js +++ b/src/stores/loadingStore.js @@ -6,14 +6,12 @@ export const useLoadingStore = defineStore("loading", () => { const startLoading = () => { loadingCount.value++; - console.log(loadingCount.value) }; const stopLoading = () => { if (loadingCount.value > 0) { setTimeout(() => { loadingCount.value--; - console.log("Stop Loading: ", loadingCount.value); }, 200); // 약간의 지연을 추가하여 응답이 동시에 도착해도 안정적으로 감소 } };