From 62a56fb89c8c425a00d96985c0e423eeb2f15d49 Mon Sep 17 00:00:00 2001 From: ccatherinetan Date: Mon, 20 May 2024 20:45:45 -0700 Subject: [PATCH] change text for caseInterpretationFields --- src/components/ListingDetails/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ListingDetails/index.tsx b/src/components/ListingDetails/index.tsx index 53f1b950..b460ec2d 100644 --- a/src/components/ListingDetails/index.tsx +++ b/src/components/ListingDetails/index.tsx @@ -96,7 +96,7 @@ const caseInterpretationFields: ListingField[] = [ 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'; },