diff --git a/src/components/ListingCard/index.tsx b/src/components/ListingCard/index.tsx index 274f309e..21032af2 100644 --- a/src/components/ListingCard/index.tsx +++ b/src/components/ListingCard/index.tsx @@ -73,7 +73,7 @@ export default function ListingCard({ const remoteInfo = useMemo(() => { if (listing.listing_type === 'CASE' || listing.listing_type === 'INT') { if (listing.is_remote === null || listing.is_remote === undefined) { - return 'Not Available'; + return 'To Be Determined'; } return listing.is_remote ? 'Remote' : 'In Person'; }