Everything seems to work fine. Query strings are parsed and serialized using the provided qs.parse and qs.stringify; however, the console gives me countless warnings about:
browser.js:49 Warning: useQueries does not stringify nested query objects by default; use a custom stringifyQuery function
Does anyone know a better way to achieve what I am trying to do which will not trigger warnings?
I managed to get stringifyQuery and parseQuery string to work properly in 2.0.0-beta-1 by doing something like this:
Everything seems to work fine. Query strings are parsed and serialized using the provided
qs.parse
andqs.stringify
; however, the console gives me countless warnings about:browser.js:49 Warning: useQueries does not stringify nested query objects by default; use a custom stringifyQuery function
Does anyone know a better way to achieve what I am trying to do which will not trigger warnings?