diff --git a/frontend/src/pages/Roster.tsx b/frontend/src/pages/Roster.tsx
index 7ca797e..d2ca555 100644
--- a/frontend/src/pages/Roster.tsx
+++ b/frontend/src/pages/Roster.tsx
@@ -824,7 +824,7 @@ export default function Roster() {
)}
}
- {colVisible('hireDate') &&
{e.hireDate?.toString().slice(0, 10)} | }
+ {colVisible('hireDate') && {e.hireDate?.toString().slice(0, 10)} | }
{e.hasTermination && e.latestTerminationDate && e.latestTerminationStatus !== 'CANCELLED' && e.latestTerminationStatus !== 'COMPLETED' ? (
@@ -836,7 +836,7 @@ export default function Roster() {
)}
|
{colVisible('position') && {e.position || '—'} | }
- {colVisible('phone') && {e.phone || '—'} | }
+ {colVisible('phone') && {e.phone || '—'} | }
{colVisible('gender') && {e.gender || '—'} | }
{colVisible('contractType') &&
{(() => {
|