diff --git a/src/store.js b/src/store.js index 4f3e599..9a94e31 100644 --- a/src/store.js +++ b/src/store.js @@ -19,11 +19,10 @@ export const theme = ref(localStorage.getItem("theme") || "auto"); watch(classFilter, (newValue) => { localStorage.setItem("classFilter", newValue); - fetchData(getNextAndPrevDay(selectedDate.value), true); + fetchData(getNextAndPrevDay(selectedDate.value), false); }); watch(timetableGroups, (newValue) => { localStorage.setItem("timetableGroups", JSON.stringify(newValue)); - fetchData(getNextAndPrevDay(selectedDate.value), true); }); watch(language, (newValue) => { localStorage.setItem("lang", newValue);