You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 18, 2026. It is now read-only.
Evidence: DocuHub/app/dashboard/page.tsx:264 and DocuHub/app/dashboard/page.tsx:296 use replace("-", " "), which only replaces the first hyphen.
Impact: IDs like pdf-page-reorder render as PDF PAGE-REORDER instead of PDF PAGE REORDER, which looks broken/unpolished. - Fix: use replaceAll("-", " ") (or regex replace(/-/g, " ")) before display.