From 58585327d8b0c11ddfd8d1ffd6e641876b9ec849 Mon Sep 17 00:00:00 2001 From: Matthias Hochmeister Date: Sat, 28 Mar 2026 19:54:12 +0100 Subject: [PATCH] fix: remove nonexistent MainLayout wrapper from Buchhaltung page --- frontend/src/pages/Buchhaltung.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/frontend/src/pages/Buchhaltung.tsx b/frontend/src/pages/Buchhaltung.tsx index e06d323..7cbb37a 100644 --- a/frontend/src/pages/Buchhaltung.tsx +++ b/frontend/src/pages/Buchhaltung.tsx @@ -41,7 +41,6 @@ import { } from '@mui/icons-material'; import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query'; import { useLocation, useNavigate } from 'react-router-dom'; -import MainLayout from '../components/shared/MainLayout'; import { buchhaltungApi } from '../services/buchhaltung'; import { useNotification } from '../contexts/NotificationContext'; import { usePermissionContext } from '../contexts/PermissionContext'; @@ -807,8 +806,7 @@ export default function Buchhaltung() { }; return ( - - + Buchhaltung @@ -840,7 +838,6 @@ export default function Buchhaltung() { onJahrChange={setSelectedJahrId} /> )} - - + ); }