Skip to content

Commit

Permalink
๐Ÿ› Design(hub): ๊ฐ€๊ฒฉ ์ •๋ณด๋ฅผ ์ž์—ฐ์ˆ˜๋กœ ๊ณ ์ •(์ž„์‹œ)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcjy committed Dec 5, 2024
1 parent edd3cf8 commit 2ab47fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/hub/src/app/architectures/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default function ArchitectureDetailPage() {
<div className="flex gap-4 justify-end items-center">
<div className="mr-2">
<span className="font-black text-xl text-emerald-600">
โ‚ฉ{cost}
โ‚ฉ{Math.floor(cost)}
</span>
<span> / month</span>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const ArchitectureItem = ({
))}
</div>
</div>
<div className="w-52">โ‚ฉ {cost}</div>
<div className="w-52">โ‚ฉ {Math.floor(cost)}</div>
<div className="w-40">{stars}</div>
<div className="w-40">{imports}</div>
</li>
Expand Down

0 comments on commit 2ab47fa

Please sign in to comment.