We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d0f985 commit ca88e20Copy full SHA for ca88e20
src/components/header.tsx
@@ -18,7 +18,7 @@ export function Header() {
18
}, []);
19
20
const formatStarCount = (count: number | null) => {
21
- if (!count) return "9.0k"; // Default to 2.0k if count is null (it can only go up from here)
+ if (!count) return "10.0k";
22
if (count >= 1000) {
23
return `${(count / 1000).toFixed(1)}k`;
24
}
0 commit comments