From 2baf5625b7cdc4c027ac7a5a537d297a99fe81dd Mon Sep 17 00:00:00 2001 From: DmitryScaletta Date: Fri, 12 Jan 2024 12:15:44 +0300 Subject: [PATCH] Fix markdown links on Next.js page --- docs/usage/nextjs.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/nextjs.mdx b/docs/usage/nextjs.mdx index d46a5ea3a6..be73e79194 100644 --- a/docs/usage/nextjs.mdx +++ b/docs/usage/nextjs.mdx @@ -386,7 +386,7 @@ The App Router has four seperate caches including `fetch` request and route cach export const dynamic = 'force-dynamic' ``` -After a mutation you should also invalidate the cache by calling (`revalidatePath`)[https://nextjs.org/docs/app/api-reference/functions/revalidatePath] or (`revalidateTag`)[https://nextjs.org/docs/app/api-reference/functions/revalidateTag] as appropriate. +After a mutation you should also invalidate the cache by calling [`revalidatePath`](https://nextjs.org/docs/app/api-reference/functions/revalidatePath) or [`revalidateTag`](https://nextjs.org/docs/app/api-reference/functions/revalidateTag) as appropriate. ### RTK Query