fix(actions): correct import path for getAuthHeaders in actions.ts

This commit is contained in:
Nils-Johan Gynther
2026-04-19 17:22:37 +02:00
parent 184ecaad61
commit 2ac6112db2
+1 -1
View File
@@ -1,6 +1,6 @@
'use server';
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';