Skip to content

Commit ff7fe54

Browse files
committed
fix: speaker with contact and participation
1 parent 87e020f commit ff7fe54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/views/Dashboard/ResponsibilitiesView.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ import BulkEmailDialogTrigger from "@/components/BulkEmailDialogTrigger.vue";
150150
import { Skeleton } from "@/components/ui/skeleton";
151151
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
152152
import type { CompanyWithParticipation } from "@/dto/companies";
153-
import type { SpeakerWithParticipation } from "@/dto/speakers";
153+
import type { SpeakerWithContactAndParticipation } from "@/dto/speakers";
154154
import { useSortByParticipationStatus } from "@/lib/utils";
155155
import { useAuthStore } from "@/stores/auth";
156156
import { useEventStore } from "@/stores/event";
@@ -245,7 +245,7 @@ const currentSpeakersParticipation = computed(() =>
245245
(participation) =>
246246
participation.event === eventStore.selectedEvent?.id,
247247
),
248-
}) as SpeakerWithParticipation,
248+
}) as SpeakerWithContactAndParticipation,
249249
)
250250
.filter(
251251
(speaker) =>

0 commit comments

Comments
 (0)