fix(imports): correct import path for getAuthHeaders in product create and update routes

This commit is contained in:
Nils-Johan Gynther
2026-04-19 17:33:39 +02:00
parent 4bf5733c76
commit 16703bb8eb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import { getAuthHeaders } from '@/lib/auth-headers'; import { getAuthHeaders } from '../../lib/auth-headers';
const API_BASE = process.env.NEXT_PUBLIC_API_URL_INTERNAL || 'http://recipe-api:8080'; const API_BASE = process.env.NEXT_PUBLIC_API_URL_INTERNAL || 'http://recipe-api:8080';
@@ -1,4 +1,4 @@
import { getAuthHeaders } from '@/lib/auth-headers'; import { getAuthHeaders } from '../../lib/auth-headers';
const API_BASE = process.env.NEXT_PUBLIC_API_URL_INTERNAL || 'http://recipe-api:8080'; const API_BASE = process.env.NEXT_PUBLIC_API_URL_INTERNAL || 'http://recipe-api:8080';