From 619b167b527769d180f9aba732fe7397333896f1 Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Sat, 25 Oct 2025 16:42:35 +0000 Subject: [PATCH] Fix footer showing the actual star count instead of abbreviated number --- components/home-page-mobile-footer.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/home-page-mobile-footer.tsx b/components/home-page-mobile-footer.tsx index 5954ad3e..b6fffa19 100644 --- a/components/home-page-mobile-footer.tsx +++ b/components/home-page-mobile-footer.tsx @@ -3,6 +3,7 @@ import { Button } from '@/components/ui/button' import { GitHubIcon } from '@/components/icons/github-icon' import { VERCEL_DEPLOY_URL } from '@/lib/constants' +import { formatAbbreviatedNumber } from '@/lib/utils/format-number' const GITHUB_REPO_URL = 'https://github.com/vercel-labs/coding-agent-template' @@ -23,7 +24,7 @@ export function HomePageMobileFooter({ initialStars = 1056 }: HomePageMobileFoot className="flex items-center justify-center gap-2" > - {initialStars.toLocaleString()} + {formatAbbreviatedNumber(initialStars)}