Kidd Liu

Results 4 comments of Kidd Liu

> We won't add new features. But still consider important fixes to keep it in a maintenance state. Of course the community can still contribute more help. Sorry to hear...

> Hi [@bdox](https://github.com/bdox) , > > To mitigate an issue where some ad blockers were deleting the cookie every seconds, thus generating a large number of short sessions that customer...

Would you please list as many changes as possible in the future? In this PR, you've changed the function signature of the `shouldUpdate` parameter of `usePrevious` and it's a breaking...

```diff // packages/hooks/src/usePrevious/index.ts import { useRef } from 'react'; - export type ShouldUpdateFunc = (prev: T | undefined, next: T) => boolean; + export type ShouldUpdateFunc = (prev?: T, next?:...