From 0115ac069f425c7b2c850771b80f9a85a7fe6e74 Mon Sep 17 00:00:00 2001 From: Sebastian Pachon Araque Date: Fri, 29 May 2026 09:12:26 +0200 Subject: [PATCH] Remove password gate (LoginGate) --- src/App.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index be732da..a2ee4f2 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -16,7 +16,6 @@ import Netzwerk from '@/pages/Netzwerk'; import MitgliedWerden from '@/pages/MitgliedWerden'; import Datenschutz from '@/pages/Datenschutz'; import Impressum from '@/pages/Impressum'; -import LoginGate from '@/components/LoginGate'; const App: React.FC = () => { const [loading, setLoading] = useState(true); @@ -47,7 +46,7 @@ const App: React.FC = () => { } return ( - + <> @@ -69,7 +68,7 @@ const App: React.FC = () => { } /> - + ); };