diff --git a/lib/memoizedShallowEqual.ts b/lib/memoizedShallowEqual.ts index 4a015f3d9..c89ea939a 100644 --- a/lib/memoizedShallowEqual.ts +++ b/lib/memoizedShallowEqual.ts @@ -8,7 +8,7 @@ import {shallowEqual} from 'fast-equals'; * the O(keys) walk and the rest resolve in O(1). WeakMap keys make stale entries impossible to * read (lookup requires holding both exact objects) and let GC reclaim them. */ -const shallowEqualVerdicts = new WeakMap>(); +const shallowEqualVerdicts = new WeakMap>(); /** * Identity-pair-memoized shallowEqual: same (a, b) references → cached verdict, no walk.