diff --git a/src/client/components/ParticipantDetailsPage/ParticipantDetailsPage.jsx b/src/client/components/ParticipantDetailsPage/ParticipantDetailsPage.jsx index 36599223..53d147bd 100644 --- a/src/client/components/ParticipantDetailsPage/ParticipantDetailsPage.jsx +++ b/src/client/components/ParticipantDetailsPage/ParticipantDetailsPage.jsx @@ -93,7 +93,7 @@ export function getParticipantDetailsPage(participantStore, participantActions) } = this.state.participantDetails; const participantName = `${firstName} ${lastName}`; - const participantStatus = internationalGuest ? `KV-osallistuja, ${country}` : ( nonScout ? 'EVP' : `Partiolainen (jäsennumero: ${memberNumber})` ); + const participantStatus = internationalGuest ? 'KV-osallistuja' : ( nonScout ? 'EVP' : `Partiolainen (jäsennumero: ${memberNumber})` ); const formattedBilledDate = billedDate ? moment(billedDate).format('D.M.YYYY') : '–'; const formattedPaidDate = paidDate ? moment(paidDate).format('D.M.YYYY') : '–'; @@ -119,7 +119,6 @@ export function getParticipantDetailsPage(participantStore, participantActions)