1
- import {
2
- useCallback ,
3
- useEffect ,
4
- useInsertionEffect ,
5
- useRef ,
6
- useState
7
- } from 'react'
1
+ import { useCallback , useEffect , useRef , useState } from 'react'
8
2
import { useAdapter } from './adapters/lib/context'
9
3
import { debug } from './debug'
10
4
import type { Options } from './defs'
@@ -260,7 +254,7 @@ export function useQueryState<T = string>(
260
254
} , [ initialSearchParams ?. get ( key ) , key ] )
261
255
262
256
// Sync all hooks together & with external URL changes
263
- useInsertionEffect ( ( ) => {
257
+ useEffect ( ( ) => {
264
258
function updateInternalState ( { state, query } : CrossHookSyncPayload ) {
265
259
debug ( '[nuqs `%s`] updateInternalState %O' , key , state )
266
260
stateRef . current = state
@@ -288,7 +282,7 @@ export function useQueryState<T = string>(
288
282
) {
289
283
newValue = null
290
284
}
291
- queryRef . current = enqueueQueryStringUpdate ( key , newValue , serialize , {
285
+ const query = enqueueQueryStringUpdate ( key , newValue , serialize , {
292
286
// Call-level options take precedence over hook declaration options.
293
287
history : options . history ?? history ,
294
288
shallow : options . shallow ?? shallow ,
@@ -297,7 +291,7 @@ export function useQueryState<T = string>(
297
291
startTransition : options . startTransition ?? startTransition
298
292
} )
299
293
// Sync all hooks state (including this one)
300
- emitter . emit ( key , { state : newValue , query : queryRef . current } )
294
+ emitter . emit ( key , { state : newValue , query } )
301
295
return scheduleFlushToURL ( adapter )
302
296
} ,
303
297
[ key , history , shallow , scroll , throttleMs , startTransition , adapter ]
0 commit comments