Skip to content

Commit 410c031

Browse files
committed
fix: 미술 상세 총 모집액 쉼표 추가
1 parent 313a5cd commit 410c031

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/product/detail/art/ArtProfit.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const ArtProfit = ({ url }: { url: string }) => {
4343
<div className=" flex ">
4444
<div className="text-gray-400 w-[150px]">총 모집액</div>
4545
<div className="flex-1">
46-
{data?.artPublish?.totalPrice.toLocaleString()}
46+
{Number(data?.artPublish?.totalPrice).toLocaleString()}
4747
</div>
4848
</div>
4949
</div>

0 commit comments

Comments
 (0)