'use client'; import { RedirectButton } from '@/components/buttons/redirect-button'; import BlockedSlotListEntry from '@/components/custom-ui/blocked-slot-list-entry'; import { Label } from '@/components/ui/label'; import { useGetApiBlockedSlots } from '@/generated/api/blocked-slots/blocked-slots'; export default function BlockedSlots() { const { data: blockedSlotsData, isLoading, error } = useGetApiBlockedSlots(); if (isLoading) return