File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 33import { Button } from '@/components/ui/button'
44import { GitHubIcon } from '@/components/icons/github-icon'
55import { VERCEL_DEPLOY_URL } from '@/lib/constants'
6+ import { formatAbbreviatedNumber } from '@/lib/utils/format-number'
67
78const GITHUB_REPO_URL = 'https://github.com/vercel-labs/coding-agent-template'
89
@@ -23,7 +24,7 @@ export function HomePageMobileFooter({ initialStars = 1056 }: HomePageMobileFoot
2324 className = "flex items-center justify-center gap-2"
2425 >
2526 < GitHubIcon className = "h-4 w-4" />
26- < span className = "text-sm font-medium" > { initialStars . toLocaleString ( ) } </ span >
27+ < span className = "text-sm font-medium" > { formatAbbreviatedNumber ( initialStars ) } </ span >
2728 </ a >
2829 </ Button >
2930
You can’t perform that action at this time.
0 commit comments