migrate to next 15 and react 19

This commit is contained in:
Milo Schwartz
2024-10-23 13:30:23 -04:00
parent 2322640dc0
commit ce19cc4ba4
20 changed files with 196 additions and 187 deletions

View File

@@ -1,7 +1,8 @@
import { cookies } from "next/headers";
export function authCookieHeader() {
const sessionId = cookies().get("session")?.value ?? null;
export async function authCookieHeader() {
const allCookies = await cookies();
const sessionId = allCookies.get("session")?.value ?? null;
return {
headers: {
Cookie: `session=${sessionId}`