Hello,
When I use this code to navigate to a page with given search params, it puts "foo+bar" in to the url. Then, when I click back it navigates to "foo%20bar" with the correct encoding for the space character.
Am I using navigate incorrectly? How can I make it correctly encode the space? Thanks
navigate({
to: `/search`,
search: { query: "foo bar" },
})