From ac12385bfb637c00d8dfeea15863b3437b5c15f5 Mon Sep 17 00:00:00 2001 From: Chad Elliott Date: Wed, 8 Jan 2025 11:35:58 -0600 Subject: [PATCH] Default the event organization to an empty string instead of Unknown. --- web-ui/src/components/volunteer/VolunteerEvents.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-ui/src/components/volunteer/VolunteerEvents.jsx b/web-ui/src/components/volunteer/VolunteerEvents.jsx index 66256fda76..92a12f58d6 100644 --- a/web-ui/src/components/volunteer/VolunteerEvents.jsx +++ b/web-ui/src/components/volunteer/VolunteerEvents.jsx @@ -258,7 +258,7 @@ const VolunteerEvents = ({ forceUpdate = () => {}, onlyMe = false }) => { - option === 'new' ? 'Create a New Organization' : (relationshipMap[option]?.organizationId && organizationMap[relationshipMap[option].organizationId]?.name) || 'Unknown' + option === 'new' ? 'Create a New Organization' : (relationshipMap[option]?.organizationId && organizationMap[relationshipMap[option].organizationId]?.name) || '' } options={['new', ...relationships.filter((rel) => !rel.endDate).map((rel) => rel.id)]} // Use relationship IDs onChange={(event, value) => {