Skip to content

Commit 67aebb5

Browse files
[chore] implement ListingDetails feedback (#89)
* chore: change N/A to TBD * change text for caseInterpretationFields
1 parent 3e99588 commit 67aebb5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/ListingDetails/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const caseFields: ListingField<CaseListing>[] = [
5555
label: 'Remote/In Person',
5656
getValue: data => {
5757
if (data.is_remote === null || data.is_remote === undefined) {
58-
return 'Not Available';
58+
return 'To Be Determined';
5959
}
6060
return data.is_remote ? 'Remote' : 'In Person';
6161
},
@@ -96,7 +96,7 @@ const caseInterpretationFields: ListingField<CaseListing>[] = [
9696
label: 'Remote/In Person',
9797
getValue: data => {
9898
if (data.is_remote === null || data.is_remote === undefined) {
99-
return 'Not Available';
99+
return 'To Be Determined';
100100
}
101101
return data.is_remote ? 'Remote' : 'In Person';
102102
},

src/utils/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export const parseTimeCommitment = (
9090
(hoursPerWeek === undefined || hoursPerWeek === null) &&
9191
(numWeeks === undefined || numWeeks === null)
9292
)
93-
return 'Not Available';
93+
return 'To Be Determined';
9494
if (numWeeks === undefined || numWeeks === null)
9595
return `${hoursPerWeek} hours/week`;
9696

0 commit comments

Comments
 (0)