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
Currently, the GDB-UI project does not have a defined route for /, causing a "No routes matched location /" error. The root route is set to /debug, but there is no landing page when visiting /.
Proposed Solution
Create a new Home component that serves as the landing page.
Add a "Let's Debug" button in the Home component, which redirects users to the /debug route.
Update the route configuration in App.js (or equivalent file) to include:
/ → Renders the Home component.
/debug → Renders the existing debug component.
This will improve user experience and ensure a valid route for /. Let me know if any modifications are required!
Yes, I am willing to Submit a PR
The text was updated successfully, but these errors were encountered:
Issue: No Home Component for
/
RouteDescription
Currently, the GDB-UI project does not have a defined route for
/
, causing a "No routes matched location/
" error. The root route is set to/debug
, but there is no landing page when visiting/
.Proposed Solution
Home
component that serves as the landing page.Home
component, which redirects users to the/debug
route.App.js
(or equivalent file) to include:/
→ Renders theHome
component./debug
→ Renders the existing debug component.This will improve user experience and ensure a valid route for
/
. Let me know if any modifications are required!The text was updated successfully, but these errors were encountered: