From aeedc76a18345fb90c792c3208abbdc958b5ecfa Mon Sep 17 00:00:00 2001 From: Mark Henderson Date: Thu, 19 Feb 2026 16:26:43 -0800 Subject: [PATCH] fix: correct authOptions import path in prewarm route Co-authored-by: Cursor --- app/api/projects/prewarm/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/projects/prewarm/route.ts b/app/api/projects/prewarm/route.ts index 8f02456..84b62a2 100644 --- a/app/api/projects/prewarm/route.ts +++ b/app/api/projects/prewarm/route.ts @@ -1,6 +1,6 @@ import { NextRequest, NextResponse } from 'next/server'; import { getServerSession } from 'next-auth'; -import { authOptions } from '@/lib/auth'; +import { authOptions } from '@/lib/auth/authOptions'; import { prewarmWorkspace } from '@/lib/cloud-run-workspace'; /**