From a0eaef2992bb41edd87a959f1b5e3dd2373e6147 Mon Sep 17 00:00:00 2001 From: Nils-Johan Gynther Date: Sun, 19 Apr 2026 20:09:23 +0200 Subject: [PATCH] fix(ForslagTab): correct relative import path for auth-headers --- frontend/app/profil/tabs/ForslagTab.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/profil/tabs/ForslagTab.tsx b/frontend/app/profil/tabs/ForslagTab.tsx index c11b3b87..63b61c63 100644 --- a/frontend/app/profil/tabs/ForslagTab.tsx +++ b/frontend/app/profil/tabs/ForslagTab.tsx @@ -1,4 +1,4 @@ -import { getAuthHeaders } from '../../../../lib/auth-headers'; +import { getAuthHeaders } from '../../../lib/auth-headers'; import PendingProductsClient from '../../admin/products/pending/PendingProductsClient'; const API_BASE = process.env.NEXT_PUBLIC_API_URL_INTERNAL ?? 'http://recipe-api:8080';