From d96799a3aa7602515b65e80064024374e454515d Mon Sep 17 00:00:00 2001 From: DmitryScaletta Date: Mon, 4 Dec 2023 21:42:24 +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 33a701d879..fb15037d7b 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