Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 불필요한 0 문자가 나오지 않도록 수정 #136

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading