From 88d3c4ad731c4ac850d3e8a6832b96438eb99da4 Mon Sep 17 00:00:00 2001 From: Nils-Johan Gynther Date: Thu, 16 Apr 2026 19:38:25 +0200 Subject: [PATCH] fix: correct import paths in MealPlanPage component --- frontend/app/matplan/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/app/matplan/page.tsx b/frontend/app/matplan/page.tsx index fc143c72..1dba271f 100644 --- a/frontend/app/matplan/page.tsx +++ b/frontend/app/matplan/page.tsx @@ -1,6 +1,6 @@ -import { fetchJson } from '../../../lib/api'; -import type { Recipe } from '../../../features/inventory/types'; -import Navigation from '../../Navigation'; +import { fetchJson } from '../../lib/api'; +import type { Recipe } from '../../features/inventory/types'; +import Navigation from '../Navigation'; import MealPlanClient from './MealPlanClient'; export default async function MealPlanPage() {