From 02ddd70d5b3ac8a8f3d2d8616eb9416ebe2976ad Mon Sep 17 00:00:00 2001 From: Alexander Densley Date: Thu, 8 Feb 2024 17:53:19 -0700 Subject: [PATCH] fix broken link caused by typo (#2321) --- docs/guides/nextjs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/nextjs.md b/docs/guides/nextjs.md index 5b802a582a..bdda2091e7 100644 --- a/docs/guides/nextjs.md +++ b/docs/guides/nextjs.md @@ -15,7 +15,7 @@ These challenges include: and again on the client. Having different outputs on both the client and the server will result in "hydration errors." The store will have to be initialized on the server and then re-initialized on the client with the same data in order to avoid that. Please read more about - that in our [SSR and Hydration](./ssr-and-hygration) guide. + that in our [SSR and Hydration](./ssr-and-hydration) guide. - **SPA routing friendly:** Next.js supports a hybrid model for client side routing, which means that in order to reset a store, we need to intialize it at the component level using a `Context`.