Skip to content

Commit

Permalink
Merge pull request #53 from gunganghaljido/feature/조혜진
Browse files Browse the repository at this point in the history
Design: 스타일링 피드백 반영
  • Loading branch information
MEGUMMY1 authored Dec 3, 2024
2 parents a500461 + 81393f8 commit 24abbb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Button/Chips/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function Chips({ chipState, text, serialNumber }: ChipsProps) {
<IconComponent name="average" width={12} height={12} />
)}
{chipState === 'count' || chipState === 'countHigh'
? `누적 수강생 ${formatCurrency(text)}`
? `누적 수강생 ${formatCurrency(text)}`
: text}
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/Lesson/Popular/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ export default function Popular() {
</div>
<Chips
chipState="top"
text={`누적 수강 ${formatCurrency(facility.totalParticipantCount)}`}
text={`누적 수강생 ${formatCurrency(facility.totalParticipantCount)}`}
serialNumber={toggle === 'general' ? true : false}
/>
</Link>
Expand Down

0 comments on commit 24abbb7

Please sign in to comment.