diff --git a/client/src/components/EmployeeModal.jsx b/client/src/components/EmployeeModal.jsx index 4706e87..d1a57f7 100755 --- a/client/src/components/EmployeeModal.jsx +++ b/client/src/components/EmployeeModal.jsx @@ -4,6 +4,8 @@ import CpasBadge, { getTier } from './CpasBadge'; import NegateModal from './NegateModal'; import EditEmployeeModal from './EditEmployeeModal'; import AmendViolationModal from './AmendViolationModal'; +import ExpirationTimeline from './ExpirationTimeline'; +import EmployeeNotes from './EmployeeNotes'; const s = { overlay: { @@ -201,7 +203,7 @@ export default function EmployeeModal({ employeeId, onClose }) {
- {tier ? tier.label : '—'} + {tier ? tier.label : '–'}
Current Tier
@@ -209,6 +211,23 @@ export default function EmployeeModal({ employeeId, onClose }) { )} {score && } + {/* ── Employee Notes ── */} + {employee && ( + setEmployee(prev => ({ ...prev, notes }))} + /> + )} + + {/* ── Expiration Timeline ── */} + {score && score.active_points > 0 && ( + + )} + {/* ── Active Violations ── */}
Active Violations
{active.length === 0 ? (