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
In my parent inventory state, I need to have optional query params. This works just fine - the URLs turn out to be something like /inventory?productId=3. However, when I navigate to the item.inventory state, I just want the URLs to be /inventory/item/3 - but this doesn't work. It appends the itemId as a query param like so: /inventory/item/?itemId=3. If I remove the optional query params from inventory state, the URL builds as expected.
The text was updated successfully, but these errors were encountered:
I think I found a possible bug. Here's some config code:
In my parent
inventory
state, I need to have optional query params. This works just fine - the URLs turn out to be something like/inventory?productId=3
. However, when I navigate to theitem.inventory
state, I just want the URLs to be/inventory/item/3
- but this doesn't work. It appends theitemId
as a query param like so:/inventory/item/?itemId=3
. If I remove the optional query params frominventory
state, the URL builds as expected.The text was updated successfully, but these errors were encountered: