Skip to content

Commit

Permalink
chore: fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
BCerki committed Jan 29, 2025
1 parent c6baea2 commit 90d8bd8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const OperationFacilitiesActionCell = (isInternalUser: boolean) => {
const renderCell = (params: GridRenderCellParams) => {
const operationType = params.row.operation__type as OperationTypes;

if (operationType === OperationTypes.EIO) return "N/A";
if (operationType === OperationTypes.EIO) return <span>N/A</span>;

const isSfo = operationType === OperationTypes.SFO;
const sfoFacilityId = params.row.sfo_facility_id;
Expand Down

0 comments on commit 90d8bd8

Please sign in to comment.