Bug Description
While reviewing the project data in src/helper/projects.js, I noticed that the OpenChat project entry uses a placeholder link:
link: { href: '#', label: 'OpenChat' }
This means the entry does not point to a valid destination, unlike most other project entries.
Steps to Reproduce
- Open the Projects page data source:
src/helper/projects.js
- Locate the
OpenChat project entry
- Observe that
link.href is set to #
Logs and Screenshots
No runtime error is thrown, but the project metadata contains a placeholder destination:
link: { href: '#', label: 'OpenChat' }
This can result in incomplete or misleading navigation wherever the project link is rendered or reused in the UI.
Environment Details
- OS: Windows 11
- Browser: Chrome
- Node.js version: not required to identify this issue
- Additional context: issue observed directly in
src/helper/projects.js while reviewing the Projects page data
Impact
Medium - Feature works but has issues
Code of Conduct