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
Is your feature request related to a problem? Please describe
Currently query params are required to be in the same order for a cache hit.
The following calls will not be considered the same and will result in unexpected cache misses: useFetchye('https://test.com/some-path?a=1&b=2') useFetchye("https://test.com/some-path?b=2&a=1')
Example
Oder of query params should not matter.
useFetchye('https://test.com/some-path?a=1&b=2') and useFetchye('https://test.com/some-path?b=2&a=1') will use the same cache entry
The text was updated successfully, but these errors were encountered:
💡 Feature request
Is your feature request related to a problem? Please describe
Currently query params are required to be in the same order for a cache hit.
The following calls will not be considered the same and will result in unexpected cache misses:
useFetchye('https://test.com/some-path?a=1&b=2')
useFetchye("https://test.com/some-path?b=2&a=1')
Example
Oder of query params should not matter.
useFetchye('https://test.com/some-path?a=1&b=2')
anduseFetchye('https://test.com/some-path?b=2&a=1')
will use the same cache entryThe text was updated successfully, but these errors were encountered: