diff --git a/ui/app/api/env/route.ts b/ui/app/api/env/route.ts index 883e31f..3583c83 100644 --- a/ui/app/api/env/route.ts +++ b/ui/app/api/env/route.ts @@ -1,7 +1,7 @@ import { NextRequest, NextResponse } from 'next/server'; import process from 'process'; -export async function requestHandler(_request: NextRequest): NextResponse { +async function requestHandler(_request: NextRequest): NextResponse { // Access environment variables const envVars = { BACKEND_API_URL: process.env.BACKEND_API_URL,