diff --git a/frontend/src/app/hr/page.tsx b/frontend/src/app/hr/page.tsx index 8a55966..576b59b 100644 --- a/frontend/src/app/hr/page.tsx +++ b/frontend/src/app/hr/page.tsx @@ -305,7 +305,7 @@ function HRContent() { const totalSalary = employees.reduce((sum, e) => sum + e.baseSalary, 0) // Render Form Fields Component - const FormFields = ({ isEdit = false }: { isEdit?: boolean }) => ( + const renderFormFields = (isEdit = false) => (