Skip to content

Commit d9b1ed4

Browse files
committed
ref: Use a useEffect rather than useLayoutEffect
To synchronise the server search params (from stock RR useSearchParams to the internal optimistic search params state). Using a layout effect gives a warning: ```txt Warning: useLayoutEffect does nothing on the server, because its effect cannot be encoded into the server renderer's output format. This will lead to a mismatch between the initial, non-hydrated UI and the intended UI. To avoid this, useLayoutEffect should only be used in components that render exclusively on the client. See https://reactjs.org/link/uselayouteffect-ssr for common fixes. ``` Looks like tests are passing fine with a good old useEffect (shallow would be the smoking gun here).
1 parent 4762b04 commit d9b1ed4

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

packages/nuqs/src/adapters/lib/react-router.ts

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
import mitt from 'mitt'
2-
import {
3-
startTransition,
4-
useCallback,
5-
useEffect,
6-
useLayoutEffect,
7-
useState
8-
} from 'react'
2+
import { startTransition, useCallback, useEffect, useState } from 'react'
93
import { renderQueryString } from '../../url-encoding'
104
import type { AdapterInterface, AdapterOptions } from './defs'
115
import {
@@ -98,7 +92,7 @@ export function createReactRouterBasedAdapter(
9892
window.removeEventListener('popstate', onPopState)
9993
}
10094
}, [])
101-
useLayoutEffect(() => {
95+
useEffect(() => {
10296
emitter.emit('update', serverSearchParams)
10397
}, [serverSearchParams])
10498
return searchParams

0 commit comments

Comments
 (0)