All Docs
FeaturesPosibl Life & Gym AppUpdated March 14, 2026

Admin Dashboard Stat Cards Show Placeholder Zeros — What You Need to Know

Admin Dashboard Stat Cards Show Placeholder Zeros — What You Need to Know

Status: Known Issue — tracked in v1.0.27

Summary

If you are a gym owner or platform administrator and have noticed that your admin dashboard displays 0 across all four summary stat cards, this is a confirmed platform issue — not a problem with your account, data, or browser.

The admin page (src/app/dashboard/admin/page.tsx) currently renders these cards with hardcoded values. No live database queries are made to fetch real counts, so the numbers shown do not represent your actual platform state.

Affected Stat Cards

The following four metrics on the admin dashboard are affected:

  • Total Organizations — always displays 0
  • Total Users — always displays 0
  • Active Subscriptions — always displays 0
  • Audit Events — always displays 0

Impact

  • The admin page itself loads and renders without errors.
  • All other admin functionality (navigation, settings, member management, etc.) is unaffected.
  • Only the four summary stat cards on the admin overview page show incorrect data.
  • No underlying data is lost or corrupted — this is purely a display issue.

Workaround

Until a fix is deployed, administrators who need accurate counts should query these figures directly from your database or via your platform's reporting tools:

-- Total organisations on the platform
SELECT count(*) FROM organizations;

-- Total registered users
SELECT count(*) FROM users;

-- Currently active subscriptions
SELECT count(*) FROM subscriptions WHERE status = 'active';

-- Total audit log entries
SELECT count(*) FROM audit_log;

Planned Fix

The hardcoded 0 values will be replaced with live database counts using either server-side async data fetching (within a Next.js server component) or a tRPC admin procedure. This will ensure the stat cards accurately reflect real platform state on every page load.

This issue is logged and prioritised for resolution in an upcoming patch release.

Questions or Concerns?

If you need accurate platform metrics urgently, please contact your platform administrator or reach out to support. Your data is intact — only the display layer is affected.