From 4250b8d2bcb5c88715274d855933eac7b70e7dd9 Mon Sep 17 00:00:00 2001 From: Nils-Johan Gynther Date: Sun, 19 Apr 2026 17:38:20 +0200 Subject: [PATCH] fix(imports): update import path for auth module in products-create and products-update routes --- frontend/app/api/products-create/route.ts | 2 +- frontend/app/api/products-update/[id]/route.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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';