Skip to content

Commit

Permalink
Merge pull request #135 from DDD-Community/feat/#133
Browse files Browse the repository at this point in the history
feat: 응원하기 받은 횟수가 없을때 문구를 보여주도록 구현현
  • Loading branch information
G-hoon authored Jan 8, 2025
2 parents 4e5c4b5 + 0ed5157 commit 6b7c275
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 @@ -199,7 +199,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 && myCheeredUpCount > 0 && (
<>
나는 오늘 우리 크루에게&nbsp;<span className="font-bold text-[#1A75FF]">{myCheeredUpCount}</span>
Expand Down

0 comments on commit 6b7c275

Please sign in to comment.