From 34c9089034d5272b3084af42b886a65a767d93e8 Mon Sep 17 00:00:00 2001 From: Alexander Densley Date: Thu, 8 Feb 2024 15:03:23 -0700 Subject: [PATCH] fix broken link caused by typo --- 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`.