diff --git a/components/events/EventGuestListAccessPanel.tsx b/components/events/EventGuestListAccessPanel.tsx index 399ff86..2a7ef9a 100644 --- a/components/events/EventGuestListAccessPanel.tsx +++ b/components/events/EventGuestListAccessPanel.tsx @@ -30,10 +30,7 @@ const EventGuestListAccessPanel = ({ eventId }: EventGuestListAccessPanelProps) try { setIsLoading(true) setError(null) - const [nextLinks, nextInvitedGuests] = await Promise.all([ - fetchEventGuestListLinks(eventId), - fetchEventInvitedGuests(eventId), - ]) + const [nextLinks, nextInvitedGuests] = await Promise.all([fetchEventGuestListLinks(eventId), fetchEventInvitedGuests(eventId)]) if (!cancelled) { setLinks(nextLinks) diff --git a/features/events/edit/EventEditForm.tsx b/features/events/edit/EventEditForm.tsx index d2b5b19..7d797d2 100644 --- a/features/events/edit/EventEditForm.tsx +++ b/features/events/edit/EventEditForm.tsx @@ -23,12 +23,7 @@ import UnsavedChangesIndicator from '@/components/forms/UnsavedChangesIndicator' import { useEventScheduleConstraints } from '@/components/events/schedule/eventScheduleConstraints' import { isEventSlugLocked, isFieldLocked, resolveEventEditPolicy } from '@/features/events/eventEditPolicy' import { syncEventFaqs, syncEventMedia } from '@/features/events/edit/syncEventExtras' -import { - fetchEventCategories, - fetchEventForEdit, - updateEventAsAdmin, - type EventCategory, -} from '@/services/events' +import { fetchEventCategories, fetchEventForEdit, updateEventAsAdmin, type EventCategory } from '@/services/events' import { fetchEventFaqs, fetchEventMedia, type EventFaq, type EventMedia } from '@/services/eventDetail' import { fetchAllCities, type City } from '@/services/geography' import { extractServerErrorDetail } from '@/services/errorHandler' diff --git a/features/events/management/EventReviewsPanel.tsx b/features/events/management/EventReviewsPanel.tsx index d5a7cad..5bea99e 100644 --- a/features/events/management/EventReviewsPanel.tsx +++ b/features/events/management/EventReviewsPanel.tsx @@ -7,11 +7,7 @@ import AdminState from '@/components/feedback/AdminState' import ReviewCard from '@/components/reviews/ReviewCard' import StatusChip from '@/components/ui/StatusChip' import { getReviewStatus } from '@/constants/status' -import { - EVENT_REVIEWS_PAGE_SIZE, - LIST_ADMIN_EVENT_REVIEWS_PAGE, - type AdminEventReview, -} from '@/services/reviews' +import { EVENT_REVIEWS_PAGE_SIZE, LIST_ADMIN_EVENT_REVIEWS_PAGE, type AdminEventReview } from '@/services/reviews' import { texts } from '@/texts' interface EventReviewsPanelProps { diff --git a/services/push.ts b/services/push.ts index 547f7ab..2165962 100644 --- a/services/push.ts +++ b/services/push.ts @@ -11,10 +11,7 @@ import { clearStoredPushSubscriptionId, getStoredPushSubscriptionId, unsubscribe const notificationsApi = getNotifications() -const UNSUBSCRIBE_PUSH = async ( - subscriptionId: string, - options?: ServiceCallOptions -): Promise> => { +const UNSUBSCRIBE_PUSH = async (subscriptionId: string, options?: ServiceCallOptions): Promise> => { try { await notificationsApi.notificationsControllerUnsubscribePush(subscriptionId)