diff --git a/frontend/src/components/Gallery/AppBar/common/FilterBtn.vue b/frontend/src/components/Gallery/AppBar/common/FilterBtn.vue index 95047e516..bf87ece9d 100644 --- a/frontend/src/components/Gallery/AppBar/common/FilterBtn.vue +++ b/frontend/src/components/Gallery/AppBar/common/FilterBtn.vue @@ -2,10 +2,13 @@ import { storeToRefs } from "pinia"; import { useI18n } from "vue-i18n"; import storeGalleryFilter from "@/stores/galleryFilter"; +import storeRoms from "@/stores/roms"; const { t } = useI18n(); const galleryFilterStore = storeGalleryFilter(); +const romsStore = storeRoms(); const { activeFilterDrawer } = storeToRefs(galleryFilterStore); +const { fetchTotalRoms } = storeToRefs(romsStore);