gdpr audit implemented, email log, vollmachten, pdf delete cancel data privacy and vollmachten, removed message no id card in engergy car, and other contracts that are not telecom contracts, added insert counter for engery

This commit is contained in:
2026-03-21 11:59:53 +01:00
parent 89cf92eaf5
commit f2876f877e
1491 changed files with 265550 additions and 1292 deletions
@@ -0,0 +1,14 @@
import { useAuth } from '../../context/AuthContext';
import CustomerDetail from '../customers/CustomerDetail';
export default function PortalProfile() {
const { user } = useAuth();
if (!user?.customerId) {
return <div className="text-center py-8 text-gray-500">Keine Kundendaten verfügbar.</div>;
}
// CustomerDetail rendert sich basierend auf der URL-Parameter :id
// Wir leiten direkt weiter auf die richtige Kunden-URL
return <CustomerDetail portalCustomerId={user.customerId} />;
}