fix(imports): correct import paths for auth module in admin user routes

This commit is contained in:
Nils-Johan Gynther
2026-04-18 09:37:45 +02:00
parent c5ccef2313
commit e11652412f
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import { NextResponse } from 'next/server';
import { auth } from '../../../../auth';
import { auth } from '../../../auth';
const API_BASE =
process.env.NEXT_PUBLIC_API_URL_INTERNAL ?? 'http://recipe-api:8080';