diff --git a/apps/client/app/(afterLogin)/my-page/_components/CompletedStudy.tsx b/apps/client/app/(afterLogin)/my-page/_components/CompletedStudy.tsx index 0edef3d8..c2bc9ce0 100644 --- a/apps/client/app/(afterLogin)/my-page/_components/CompletedStudy.tsx +++ b/apps/client/app/(afterLogin)/my-page/_components/CompletedStudy.tsx @@ -2,7 +2,7 @@ import { css } from "@styled-system/css"; import { Flex } from "@styled-system/jsx"; -import { AwardIcon, Space, StarCheckIcon, Text } from "@wow-class/ui"; +import { AwardIcon, StarCheckIcon, Text } from "@wow-class/ui"; import { studyHistoryApi } from "apis/studyHistoryApi"; import Link from "next/link"; import type { ComponentProps, CSSProperties } from "react"; @@ -39,56 +39,53 @@ export const CompletedStudy = async () => { studyHistoryStatus, achievements, }) => ( -
- - - - {title} - - {studyType} - - - {introduction && ( - - - {introduction} - - - )} - - - {mentorName} 멘토 - - - - {academicYear}-{semesterType === "FIRST" ? "1" : "2"} - - - - {totalWeek}주 코스 - - - {studyHistoryStatus === "COMPLETED" ? ( - - ) : ( - - - )} - - - - - - - - -
+ + + + {title} + + {studyType} + + + {introduction && ( + + + {introduction} + + + )} + + + {mentorName} 멘토 + + + + {academicYear}-{semesterType === "FIRST" ? "1" : "2"} + + + + {totalWeek}주 코스 + + + {studyHistoryStatus === "COMPLETED" ? ( + + ) : ( + - + )} + + + + + + + ) )}