Skip to content

Commit

Permalink
feat: Table.Content 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
SeieunYoo committed Aug 20, 2024
1 parent 1129719 commit f8db3a7
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,12 @@ export const HomeworkHistoryItem = ({ history }: HomeworkHistoryItemProps) => {
{week}주차
</Text>
<Space width={50} />
<Table.Content subText={deadlineText} text={title} />
<Flex direction="column" gap="xxs" justifyContent="center">
<Text typo="h3">{title}</Text>
<Text color="sub" typo="body2">
{deadlineText}
</Text>
</Flex>
</Table.Left>
<Table.Right>
<Flex
Expand Down Expand Up @@ -81,7 +86,7 @@ const homeworkSubmissionMap: Record<
AssignmentSubmissionStatusType,
{ message: string; color: ComponentProps<typeof Tag>["color"] }
> = {
FAIL: {
FAILURE: {
message: "제출 실패",
color: "red",
},
Expand Down

0 comments on commit f8db3a7

Please sign in to comment.