We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a route called contacts.$id[.vcard].tsx
contacts.$id[.vcard].tsx
the route string is properly generated by the routes.d.ts but the runtime handling of it is invalid.
the produced URL of the route function looks as follows:
route('/contacts/:id.vcard', { id: '1', })
and the output looks like this:
/contacts/:id.vcard
where :id should be replaced with the actual parameter
:id
N/A
outlined above
I'd expect the correct runtime value
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
I have a route called
contacts.$id[.vcard].tsx
the route string is properly generated by the routes.d.ts but the runtime handling of it is invalid.
the produced URL of the route function looks as follows:
and the output looks like this:
where
:id
should be replaced with the actual parameterYour Example Website or App
N/A
Steps to Reproduce the Bug or Issue
outlined above
Expected behavior
I'd expect the correct runtime value
Screenshots or Videos
No response
Platform
N/A
Additional context
No response
The text was updated successfully, but these errors were encountered: