From 893b24b94e0c0785d5fa9c9ac1e80c7da1ddac57 Mon Sep 17 00:00:00 2001 From: Pagebakers Date: Fri, 23 Feb 2024 12:30:02 -0300 Subject: [PATCH] chore: fix nextjs link guide --- .../website/src/pages/docs/core/installation/nextjs-guide.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/website/src/pages/docs/core/installation/nextjs-guide.mdx b/apps/website/src/pages/docs/core/installation/nextjs-guide.mdx index 7a78f085b..d1198877e 100644 --- a/apps/website/src/pages/docs/core/installation/nextjs-guide.mdx +++ b/apps/website/src/pages/docs/core/installation/nextjs-guide.mdx @@ -65,7 +65,7 @@ export default function RootLayout({ ### Link Component -Configure a `linkComponent` to make the Saas UI components that use `Link` work with the Next.js router. +Configure a `linkComponent` to make the Saas UI components use `Link` that works with the Next.js router. ```tsx 'use client' @@ -78,7 +78,7 @@ const NextLink = React.forwardRef( ) export function Providers({ children }: { children: React.ReactNode }) { - return {children} + return {children} } ```