Skip to content

Commit

Permalink
fix: do not update during render (#467)
Browse files Browse the repository at this point in the history
* fix: do not update during render

* chore: prettier
  • Loading branch information
SantoJambit authored Mar 31, 2024
1 parent 58c8a97 commit 2d45788
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/react-cookie/src/useCookies.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ export default function useCookies<T extends string, U = { [K in T]?: any }>(
throw new Error('Missing <CookiesProvider>');
}

const [allCookies, setCookies] = useState(() => cookies.getAll());
const [allCookies, setCookies] = useState(() =>
cookies.getAll({ doNotUpdate: true }),
);

if (isInBrowser()) {
useLayoutEffect(() => {
Expand Down
2 changes: 1 addition & 1 deletion packages/react-cookie/src/withCookies.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default function withCookies<T extends ReactCookieProps>(

render() {
const { forwardedRef, cookies, ...restProps } = this.props;
const allCookies = cookies.getAll();
const allCookies = cookies.getAll({ doNotUpdate: true });
return (
<WrappedComponent
{...(restProps as T)}
Expand Down

0 comments on commit 2d45788

Please sign in to comment.