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
// We generally want tag at the start of the query string
14
14
const{tag, ...opts}=options
15
-
if(tag)searchParams.set('tag',tag)
16
-
searchParams.set('query',query)
15
+
// We're using `append` instead of `set` to support React Native: https://github.com/facebook/react-native/blob/1982c4722fcc51aa87e34cf562672ee4aff540f1/packages/react-native/Libraries/Blob/URL.js#L86-L88
16
+
if(tag)searchParams.append('tag',tag)
17
+
searchParams.append('query',query)
17
18
18
19
// Iterate params, the keys are prefixed with `$` and their values JSON stringified
0 commit comments