Skip to content

Commit 7a46f3f

Browse files
committed
fixes
1 parent 358920a commit 7a46f3f

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

frontend/src/components/blocks/dynamic-content-display-section/accepted-proposals.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ query AcceptedProposals($code: String!, $language: String!) {
99
id
1010
fullName
1111
participant {
12+
id
1213
photo
1314
bio
1415
}

frontend/src/components/blocks/dynamic-content-display-section/speakers-content.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const SpeakersContent = () => {
2828
submissions.toSorted((a, b) =>
2929
a.speaker.fullName.localeCompare(b.speaker.fullName),
3030
),
31-
(submission) => submission.speaker.id,
31+
(submission) => submission.speaker.participant.id,
3232
);
3333

3434
return (

frontend/src/components/voting-card/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ export const VotingCard = ({
225225
<Spacer size="small" />
226226

227227
<Text weight="strong" as="p" size={2}>
228-
{speaker.fullname}
228+
{speaker.fullName}
229229
</Text>
230230
</CardPart>
231231
</GridColumn>

frontend/src/fragments/submission-accordion.graphql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,9 @@ fragment submissionAccordion on Submission {
3333
id
3434
value
3535
}
36+
37+
speaker {
38+
id
39+
fullName
40+
}
3641
}

0 commit comments

Comments
 (0)