From a41b48f016025b5fe73a1bee8dfa4ee9657d6edf Mon Sep 17 00:00:00 2001 From: Kyle Pope Date: Sun, 15 Mar 2026 22:16:53 +0800 Subject: [PATCH] Fix TS build: remove unused isLoadingInvitees var and Select import Co-Authored-By: Claude Opus 4.6 --- frontend/src/components/calendar/EventDetailPanel.tsx | 2 +- frontend/src/components/calendar/InviteeSection.tsx | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/components/calendar/EventDetailPanel.tsx b/frontend/src/components/calendar/EventDetailPanel.tsx index 0bb174f..6ac2a6c 100644 --- a/frontend/src/components/calendar/EventDetailPanel.tsx +++ b/frontend/src/components/calendar/EventDetailPanel.tsx @@ -258,7 +258,7 @@ export default function EventDetailPanel({ const eventNumericId = event && typeof event.id === 'number' ? event.id : null; const parentEventId = event?.parent_event_id ?? eventNumericId; const { - invitees, isLoadingInvitees, invite, isInviting, respond: respondInvitation, + invitees, invite, isInviting, respond: respondInvitation, isResponding, override: overrideInvitation, leave: leaveInvitation, isLeaving, } = useEventInvitations(parentEventId); const { connections } = useConnectedUsersSearch(); diff --git a/frontend/src/components/calendar/InviteeSection.tsx b/frontend/src/components/calendar/InviteeSection.tsx index 14e6047..73dfa44 100644 --- a/frontend/src/components/calendar/InviteeSection.tsx +++ b/frontend/src/components/calendar/InviteeSection.tsx @@ -2,7 +2,6 @@ import { useState, useMemo } from 'react'; import { Users, UserPlus, Search, X } from 'lucide-react'; import { Input } from '@/components/ui/input'; import { Button } from '@/components/ui/button'; -import { Select } from '@/components/ui/select'; import type { EventInvitation, Connection } from '@/types'; // ── Status display helpers ──