{body ? (
{`${body.first_name || ""} ${body.last_name || ""}`}
!jobRO && handleRemove("body")}
/>
) : (
{
if (!jobRO) {
setAssignment({operation: "body"});
setVisibility(true);
}
}}
/>
)}
{prep ? (
{`${prep.first_name || ""} ${prep.last_name || ""}`}
!jobRO && handleRemove("prep")}
/>
) : (
{
if (!jobRO) {
setAssignment({operation: "prep"});
setVisibility(true);
}
}}
/>
)}
{refinish ? (
{`${refinish.first_name || ""} ${
refinish.last_name || ""
}`}
!jobRO && handleRemove("refinish")}
/>
) : (
{
if (!jobRO) {
setAssignment({operation: "refinish"});
setVisibility(true);
}
}}
/>
)}
{csr ? (
{`${csr.first_name || ""} ${csr.last_name || ""}`}
!jobRO && handleRemove("csr")}
/>
) : (
{
if (!jobRO) {
setAssignment({operation: "csr"});
setVisibility(true);
}
}}
/>
)}