Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmeshulam committed Oct 31, 2024
1 parent 005de64 commit a5d9a8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/frontend/pages/lems/export/[teamId]/rubrics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ const ExportRubricPage: React.FC<ExportRubricPageProps> = ({ division, team, rub
</Grid>
<Grid size={5.5}>
<Stack spacing={1} textAlign="center">
<Typography fontWeight={700}>{schema.feedback?.[0].title}</Typography>
<Typography fontWeight={700}>{schema.feedback?.fields.greatJob}</Typography>
<Typography fontSize="0.875rem">{rubric.data?.feedback.greatJob}</Typography>
</Stack>
</Grid>
Expand All @@ -237,7 +237,7 @@ const ExportRubricPage: React.FC<ExportRubricPageProps> = ({ division, team, rub
</Grid>
<Grid size={5.5}>
<Stack spacing={1} textAlign="center">
<Typography fontWeight={700}>{schema.feedback?.[1].title}</Typography>
<Typography fontWeight={700}>{schema.feedback?.fields.thinkAbout}</Typography>
<Typography fontSize="0.875rem">{rubric.data?.feedback.thinkAbout}</Typography>
</Stack>
</Grid>
Expand Down

0 comments on commit a5d9a8e

Please sign in to comment.