PageSpeed monitoring, Polar billing, sidebar polish, frontend consistency audit #68

Merged
uz1mani merged 45 commits from staging into main 2026-03-23 19:07:54 +00:00
5 changed files with 988 additions and 0 deletions
Showing only changes of commit 9d1d2dbb80 - Show all commits

View File

@@ -520,7 +520,10 @@ export default function PageSpeedPage() {
{group.label}
</h3>
<p className="text-xs text-neutral-500 dark:text-neutral-400">
{groupAudits.length === 0 ? 'No issues found' : `${groupAudits.length} issue${groupAudits.length !== 1 ? 's' : ''} found`}
{(() => {
const realIssues = groupAudits.filter(a => a.score !== null && a.score !== undefined).length
return realIssues === 0 ? 'No issues found' : `${realIssues} issue${realIssues !== 1 ? 's' : ''} found`
})()}
</p>
</div>
</div>