diff --git a/frontend/app/api/products-create/route.ts b/frontend/app/api/products-create/route.ts index 4b5b19e6..08520df2 100644 --- a/frontend/app/api/products-create/route.ts +++ b/frontend/app/api/products-create/route.ts @@ -1,4 +1,4 @@ -import { auth } from '../../../auth.ts'; +import { auth } from '../../../auth'; const API_BASE = process.env.NEXT_PUBLIC_API_URL_INTERNAL || 'http://recipe-api:8080'; diff --git a/frontend/app/api/products-update/[id]/route.ts b/frontend/app/api/products-update/[id]/route.ts index 1bd1aeed..9f553029 100644 --- a/frontend/app/api/products-update/[id]/route.ts +++ b/frontend/app/api/products-update/[id]/route.ts @@ -1,4 +1,4 @@ -import { auth } from '../../../../auth.ts'; +import { auth } from '../../../../auth'; const API_BASE = process.env.NEXT_PUBLIC_API_URL_INTERNAL || 'http://recipe-api:8080';