+
@@ -117,7 +115,6 @@ import { ref, computed, onMounted } from 'vue';
import { useMasterStore } from '@/stores/masterStore';
import { useClinicStore } from '@/stores/clinicStore';
import { useRuangStore } from '@/stores/ruangStore';
-import { useInfiniteScroll } from '@/composables/useInfiniteScroll';
import { useRoute } from '#app';
definePageMeta({
@@ -135,9 +132,6 @@ const kliniksWithRuang = computed(() => {
return [...list].sort((a, b) => a.namaKlinik.localeCompare(b.namaKlinik));
});
-// Infinite Scroll
-const { visibleItems: visibleKliniks, targetRef, hasMore } = useInfiniteScroll(kliniksWithRuang, 12);
-
// Deprecated: Pagination logic removed