📋 Description
There is a broken link on the platform that opens a completely blank page when clicked instead of directing the user to the intended destination. This disrupts the user experience and leaves dead ends in the application workflow.
🔍 Suspected Causes
- Missing or Invalid
href: The link element might have an empty href="", a typo in the URL, or a placeholder symbol (like #) combined with a target attribute that forces a new tab.
- Incorrect Target Attribute: The link might be using
target="_blank" without a valid destination URL, opening an empty browser tab (about:blank).
- Routing Issue: If this is a client-side route, the router might be failing to resolve the path dynamically, resulting in an unrendered component view.
✨ Expected Behavior
- The link should cleanly direct the user to the correct, functional target page.
- If it points to an external resource, it should open properly in a new tab without stalling on a blank screen.
🚀 Implementation Checklist
@kaifansariw , I want to get assigned under GSSoC 26'.
📋 Description
There is a broken link on the platform that opens a completely blank page when clicked instead of directing the user to the intended destination. This disrupts the user experience and leaves dead ends in the application workflow.
🔍 Suspected Causes
href: The link element might have an emptyhref="", a typo in the URL, or a placeholder symbol (like#) combined with a target attribute that forces a new tab.target="_blank"without a valid destination URL, opening an empty browser tab (about:blank).✨ Expected Behavior
🚀 Implementation Checklist
target="_blank"paired withrel="noopener noreferrer"for security if opening externally.@kaifansariw , I want to get assigned under GSSoC 26'.