From b55f558a62d84dbf970c006aa29fcc50bf75c0a3 Mon Sep 17 00:00:00 2001 From: Antigravity Date: Tue, 5 May 2026 21:27:43 +0000 Subject: [PATCH] fix: import auth depuis @/auth (pas @/lib/auth) Co-authored-by: Cursor --- memento-note/app/api/agents/run-for-note/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memento-note/app/api/agents/run-for-note/route.ts b/memento-note/app/api/agents/run-for-note/route.ts index efcf208..0514068 100644 --- a/memento-note/app/api/agents/run-for-note/route.ts +++ b/memento-note/app/api/agents/run-for-note/route.ts @@ -1,5 +1,5 @@ import { NextRequest, NextResponse } from 'next/server' -import { auth } from '@/lib/auth' +import { auth } from '@/auth' import { prisma } from '@/lib/prisma' type GenerateType = 'slide-generator' | 'excalidraw-generator'