Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoacierno committed Feb 13, 2025
1 parent 358920a commit 7a46f3f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ query AcceptedProposals($code: String!, $language: String!) {
id
fullName
participant {
id
photo
bio
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const SpeakersContent = () => {
submissions.toSorted((a, b) =>
a.speaker.fullName.localeCompare(b.speaker.fullName),
),
(submission) => submission.speaker.id,
(submission) => submission.speaker.participant.id,
);

return (
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/voting-card/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ export const VotingCard = ({
<Spacer size="small" />

<Text weight="strong" as="p" size={2}>
{speaker.fullname}
{speaker.fullName}
</Text>
</CardPart>
</GridColumn>
Expand Down
5 changes: 5 additions & 0 deletions frontend/src/fragments/submission-accordion.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,9 @@ fragment submissionAccordion on Submission {
id
value
}

speaker {
id
fullName
}
}

0 comments on commit 7a46f3f

Please sign in to comment.