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:
@@ -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} />;
|
||||
}
|
||||
Reference in New Issue
Block a user