diff --git a/src/components/ui/Tech_Table.tsx b/src/components/ui/Tech_Table.tsx index 4e2550a..a453804 100644 --- a/src/components/ui/Tech_Table.tsx +++ b/src/components/ui/Tech_Table.tsx @@ -50,7 +50,10 @@ export default function Tech_Table({ employees }: { employees: Employee[] }) { 'Content-Type': 'application/json', 'Authorization': `Bearer ${process.env.API_KEY}` }, - body: JSON.stringify({ employeeIds: [cur_user.id], newStatus: employeeStatus }), + body: JSON.stringify( + { employeeIds: [cur_user.id], + newStatus: employeeStatus } + ), }); } } else if (employeeStatus.trim() !== '') { @@ -60,7 +63,10 @@ export default function Tech_Table({ employees }: { employees: Employee[] }) { 'Content-Type': 'application/json', 'Authorization': `Bearer ${process.env.API_KEY}` }, - body: JSON.stringify({ employeeIds: selectedIds, newStatus: employeeStatus }), + body: JSON.stringify( + { employeeIds: selectedIds, + newStatus: employeeStatus } + ), }); } @@ -163,10 +169,10 @@ export default function Tech_Table({ employees }: { employees: Employee[] }) { from-[#282828] to-[#383838] text-[48px]"> {!tvMode && ( - + @@ -195,7 +201,7 @@ export default function Tech_Table({ employees }: { employees: Employee[] }) { handleCheckboxChange(employee.id)} />