WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 9d82987

Browse files
authored
Fix survey displays (#310)
1 parent b0e6c3d commit 9d82987

File tree

1 file changed

+2
-2
lines changed
  • src/routes/(authenticated)/dashboard/[conferenceId]

1 file changed

+2
-2
lines changed

src/routes/(authenticated)/dashboard/[conferenceId]/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
let singleParticipant = $derived(conferenceQueryData?.findUniqueSingleParticipant);
2121
let supervisor = $derived(conferenceQueryData?.findUniqueConferenceSupervisor);
2222
let status = $derived(conferenceQueryData?.findUniqueConferenceParticipantStatus);
23-
let surveyQuestions = $derived(conferenceQueryData?.findUniqueSurveyQuestions);
24-
let surveyAnswers = $derived(conferenceQueryData?.findUniqueSurveyAnswers);
23+
let surveyQuestions = $derived(conferenceQueryData?.findManySurveyQuestions);
24+
let surveyAnswers = $derived(conferenceQueryData?.findManySurveyAnswers);
2525
</script>
2626

2727
<div class="flex w-full flex-col items-center">

0 commit comments

Comments
 (0)