Skip to content

Commit

Permalink
chore: change N/A to TBD
Browse files Browse the repository at this point in the history
  • Loading branch information
ccatherinetan committed May 21, 2024
1 parent eed1657 commit cb46eda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ListingDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const caseFields: 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
2 changes: 1 addition & 1 deletion src/utils/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const parseTimeCommitment = (
(hoursPerWeek === undefined || hoursPerWeek === null) &&
(numWeeks === undefined || numWeeks === null)
)
return 'Not Available';
return 'To Be Determined';
if (numWeeks === undefined || numWeeks === null)
return `${hoursPerWeek} hours/week`;

Expand Down

0 comments on commit cb46eda

Please sign in to comment.