diff --git a/apps/landing/src/components/home/bonus.tsx b/apps/landing/src/components/home/bonus.tsx index 1e7712ccc..d9127c75e 100644 --- a/apps/landing/src/components/home/bonus.tsx +++ b/apps/landing/src/components/home/bonus.tsx @@ -12,6 +12,8 @@ import { BonusItem } from "@/components/home/bonus-item"; export async function Bonus({ t }: { t: TFunction<"home" | "common"> }) { const userCount = await prisma.user.count(); + const roundedUserCount = + userCount > 100000 ? Math.floor(userCount / 10000) * 10000 : userCount; return (