From 2ac6112db2c823c769db6f909e63d52baac42384 Mon Sep 17 00:00:00 2001 From: Nils-Johan Gynther Date: Sun, 19 Apr 2026 17:22:37 +0200 Subject: [PATCH] fix(actions): correct import path for getAuthHeaders in actions.ts --- frontend/app/kvitto/actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/kvitto/actions.ts b/frontend/app/kvitto/actions.ts index ca4f5815..de880fbc 100644 --- a/frontend/app/kvitto/actions.ts +++ b/frontend/app/kvitto/actions.ts @@ -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';