Description
The top navbar on the Prisma website is showing the GitHub stars count as 00.0k instead of the actual GitHub stars count.
Affected page
https://www.prisma.io/
Current behaviour
The navbar GitHub link/count displays:
00.0k GitHub
Expected behaviour
The navbar should display the real GitHub stars count for the Prisma GitHub repository.
If the stars count cannot be loaded, the navbar should gracefully fallback, for example by showing only GitHub instead of rendering an invalid value like 00.0k.
Steps to reproduce
- Open https://www.prisma.io/
- Check the top navbar GitHub stars/count area.
- Notice that the count is rendered as
00.0k.
Suggested fix
The issue is likely in the navbar/header component where the GitHub stars count is fetched, formatted, or initialized.
A possible fix would be to:
- ensure the GitHub stars API/data source returns a valid number before formatting,
- avoid formatting an empty/undefined/invalid value as
00.0k,
- add a safer fallback such as hiding the count or showing only the GitHub link when the count is unavailable.
Additional context
This looks like a website/UI bug and should be fixable in the web monorepo navbar/header code.
Description
The top navbar on the Prisma website is showing the GitHub stars count as
00.0kinstead of the actual GitHub stars count.Affected page
https://www.prisma.io/
Current behaviour
The navbar GitHub link/count displays:
00.0k GitHubExpected behaviour
The navbar should display the real GitHub stars count for the Prisma GitHub repository.
If the stars count cannot be loaded, the navbar should gracefully fallback, for example by showing only
GitHubinstead of rendering an invalid value like00.0k.Steps to reproduce
00.0k.Suggested fix
The issue is likely in the navbar/header component where the GitHub stars count is fetched, formatted, or initialized.
A possible fix would be to:
00.0k,Additional context
This looks like a website/UI bug and should be fixable in the web monorepo navbar/header code.