diff --git a/client/src/components/EmployeeModal.jsx b/client/src/components/EmployeeModal.jsx index bd3c017..41938aa 100755 --- a/client/src/components/EmployeeModal.jsx +++ b/client/src/components/EmployeeModal.jsx @@ -89,145 +89,7 @@ export default function EmployeeModal({ employeeId, onClose }) { return (
Loading…
- ) : (<> - -No active violations on record.
- ) : ( -| Date | -Violation | -Pts | -Actions | -
|---|---|---|---|
| {v.incident_date} | -
- {v.violation_name}
- {v.category}
- {v.details && {v.details} }
- |
- {v.points} | -
-
-
- - {confirmDel === v.id ? ( -
- Permanently delete? This cannot be undone.
-
- ) : (
-
- )}
-
-
-
-
- |
-
| Date | -Violation | -Pts | -Resolution | -Actions | -
|---|---|---|---|---|
| {v.incident_date} | -
- {v.violation_name}
- {v.category}
- |
- {v.points} | -
- {v.resolution_type}
- {v.resolution_details && {v.resolution_details} }
- {v.resolved_by && by {v.resolved_by} }
- |
-
-
- {confirmDel === v.id ? (
-
- Permanently delete?
-
- ) : (
-
- )}
-
-
-
-
- |
-