You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This ended up biting me with some hydration errors which were pretty hard to track down, and indeed I just forgot to wrap my layout with CookiesProvider.
The text was updated successfully, but these errors were encountered:
The
useCookies
hook contains a check for a wrapping Provider:Unfortunately, this never throws because
CookiesContext
has a default value, thereforecookies
is always defined and the condition is always false:This ended up biting me with some hydration errors which were pretty hard to track down, and indeed I just forgot to wrap my layout with
CookiesProvider
.The text was updated successfully, but these errors were encountered: