-
-
Notifications
You must be signed in to change notification settings - Fork 10.8k
Closed
Labels
Description
What version of React Router are you using?
6.9.0
Steps to Reproduce
if my url is '/test/1-a' can not match
i find it is 'compilePath' function in "@remix-run/router@1.4.0"
version < 1.4.0, Work properly
Expected Behavior
const [matcher,params] = compilePath('/search/brands/:keywords-:country', false, true)
i want params is ['keywords', 'country']
Actual Behavior
const [matcher,params] = compilePath('/search/brands/:keywords-:country', false, true)
i want params is ['keywords', 'country']

