Skip to content

Commit

Permalink
change text for caseInterpretationFields
Browse files Browse the repository at this point in the history
  • Loading branch information
ccatherinetan committed May 21, 2024
1 parent cb46eda commit 62a56fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ListingDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const caseInterpretationFields: ListingField<CaseListing>[] = [
label: 'Remote/In Person',
getValue: data => {
if (data.is_remote === null || data.is_remote === undefined) {
return 'Not Available';
return 'To Be Determined';
}
return data.is_remote ? 'Remote' : 'In Person';
},
Expand Down

0 comments on commit 62a56fb

Please sign in to comment.