Support trailing slash on project URLs #27
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The back-link from the design system preview points to /projects/{slug}/ with
a trailing slash. The project route only matches /projects/{slug} without one,
so the link 404s.
The fix is to redirect /projects/{slug}/ to /projects/{slug}, or register
both patterns. This is the same class of issue as the design-preview trailing
slash fix from PR #25.