From eee4d00a082d46417a1a645bdfe5e1afa8fcc991 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Wed, 18 Sep 2024 16:55:29 +0400 Subject: [PATCH] fix: removed audit logs from project-level --- frontend/src/layouts/AppLayout/AppLayout.tsx | 12 ---------- .../pages/project/[id]/audit-logs/index.tsx | 23 ------------------- 2 files changed, 35 deletions(-) delete mode 100644 frontend/src/pages/project/[id]/audit-logs/index.tsx diff --git a/frontend/src/layouts/AppLayout/AppLayout.tsx b/frontend/src/layouts/AppLayout/AppLayout.tsx index 3f7f1a7e0..9f5e9897f 100644 --- a/frontend/src/layouts/AppLayout/AppLayout.tsx +++ b/frontend/src/layouts/AppLayout/AppLayout.tsx @@ -675,18 +675,6 @@ export const AppLayout = ({ children }: LayoutProps) => { - - - - Audit Logs - - - { - const { t } = useTranslation(); - - return ( -
- - {t("common.head-title", { title: t("settings.project.title") })} - - - - -
- ); -}; - -export default Logs; - -Logs.requireAuth = true;