Skip to content

Commit

Permalink
adjust build
Browse files Browse the repository at this point in the history
  • Loading branch information
Janderson Souza Matias authored and Janderson Souza Matias committed Oct 18, 2023
1 parent d5bbf78 commit 19fb32c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pages/Sessions/SessionView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,15 @@ const SessionView: React.FC<Props> = ({ session, onClose }) => {
<Text>{session?.teacher.name}</Text>
<Divider my="8px" />

{session?.feedbacks[0] && (
{session?.feedback_id && (
<VStack w="100%" mb="20px" py="16px" borderBottom="1px solid #eee">
<Text w="100%" mb="16px" fontSize={20} fontWeight="semibold">
Feedback annotation
</Text>
<Text w="100%">{session?.feedbacks[0].value}</Text>
<Text w="100%">{session?.feedback_id}</Text>
</VStack>
)}

{competencies.map((competence, index) => (
<div>
<Text fontSize={20} fontWeight="semibold">
Expand Down

0 comments on commit 19fb32c

Please sign in to comment.