From 9cacd30c1be17dee5cbf643cffb4897d8284a574 Mon Sep 17 00:00:00 2001 From: pilcrowOnPaper Date: Tue, 8 Oct 2024 08:25:56 +0900 Subject: [PATCH] fix typo --- pages/tutorials/github-oauth/nextjs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/tutorials/github-oauth/nextjs.md b/pages/tutorials/github-oauth/nextjs.md index a853342..b7fc6ae 100644 --- a/pages/tutorials/github-oauth/nextjs.md +++ b/pages/tutorials/github-oauth/nextjs.md @@ -179,7 +179,7 @@ export async function GET(request: Request): Promise { ## Validate requests -Use the `getCurrentUser()` function from the [Session cookies in Astro](/sessions/cookies/astro) page to get the current user and session. +Use the `getCurrentUser()` function from the [Session cookies in Next.js](/sessions/cookies/nextjs) page to get the current user and session. ```tsx import { redirect } from "next/navigation";