Skip to content

Commit

Permalink
Merge pull request #136 from DDD-Community/feat/#133
Browse files Browse the repository at this point in the history
feat: 불필요한 0 문자가 나오지 않도록 수정
  • Loading branch information
G-hoon authored Jan 8, 2025
2 parents 6b7c275 + 5796182 commit 6dc1617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/MyCrew.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export default function MyCrew() {
</div>
<div className="height-[68px] mt-3 flex justify-center rounded-[12px] border-[1px] border-solid border-gray-200 bg-white py-6 text-[18px] font-medium">
{(!myCheeredUpCount || myCheeredUpCount === 0) && <>나는 오늘 우리 크루에게 아직 응원받은 내역이 없어요!</>}
{myCheeredUpCount && myCheeredUpCount > 0 && (
{myCheeredUpCount !== null && myCheeredUpCount > 0 && (
<>
나는 오늘 우리 크루에게&nbsp;<span className="font-bold text-[#1A75FF]">{myCheeredUpCount}</span>
&nbsp;응원받았어요.
Expand Down

0 comments on commit 6dc1617

Please sign in to comment.