Skip to content

Commit

Permalink
refactor : PR 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
mun-kyeong committed Sep 27, 2024
1 parent 5083018 commit 3657e6d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/containers/study/StudyInfoCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ const StudyInfoCard = ({ progress, startAt, endAt, status }: StudyInfoCardProps)
<Card p="4" bg="white" borderRadius="lg">
<Flex columnGap="4" fontWeight="bold">
{status === 'ENDED' ? (
<Text color="orange"> &quot; 종료된 스터디 입니다. &quot;</Text>
<Text color="orange"> {' 종료된 스터디 입니다. '} </Text>
) : (
<>
{' '}
<Text display={{ base: 'none', '2xl': 'block' }}>스터디 진행률</Text>
<StudyProgress progress={progress} />
</>
Expand Down

0 comments on commit 3657e6d

Please sign in to comment.