File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
components/ListingDetails Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const caseFields: ListingField<CaseListing>[] = [
55
55
label : 'Remote/In Person' ,
56
56
getValue : data => {
57
57
if ( data . is_remote === null || data . is_remote === undefined ) {
58
- return 'Not Available ' ;
58
+ return 'To Be Determined ' ;
59
59
}
60
60
return data . is_remote ? 'Remote' : 'In Person' ;
61
61
} ,
@@ -96,7 +96,7 @@ const caseInterpretationFields: ListingField<CaseListing>[] = [
96
96
label : 'Remote/In Person' ,
97
97
getValue : data => {
98
98
if ( data . is_remote === null || data . is_remote === undefined ) {
99
- return 'Not Available ' ;
99
+ return 'To Be Determined ' ;
100
100
}
101
101
return data . is_remote ? 'Remote' : 'In Person' ;
102
102
} ,
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ export const parseTimeCommitment = (
90
90
( hoursPerWeek === undefined || hoursPerWeek === null ) &&
91
91
( numWeeks === undefined || numWeeks === null )
92
92
)
93
- return 'Not Available ' ;
93
+ return 'To Be Determined ' ;
94
94
if ( numWeeks === undefined || numWeeks === null )
95
95
return `${ hoursPerWeek } hours/week` ;
96
96
You can’t perform that action at this time.
0 commit comments