diff --git a/src/components/dialogs/IndividualsUploadDialog.js b/src/components/dialogs/IndividualsUploadDialog.js index bc2ed46..2a675ad 100644 --- a/src/components/dialogs/IndividualsUploadDialog.js +++ b/src/components/dialogs/IndividualsUploadDialog.js @@ -65,7 +65,7 @@ function IndividualsUploadDialog({ try { const fileHeaders = await getHeadersFromCSV(selectedFile); const filteredHeaders = fileHeaders.filter( - (header) => header !== 'recipient_info' && header !== 'group_id', + (header) => header !== 'recipient_info' && header !== 'group_code', ); setHeaders(filteredHeaders); } catch (error) { diff --git a/src/translations/en.json b/src/translations/en.json index aa8aedd..d0eb603 100644 --- a/src/translations/en.json +++ b/src/translations/en.json @@ -246,5 +246,5 @@ "changeGroupButtonTooltip": "Move to another group.", "moveToNewGroup": "New Group", "createGroupFromColumns": "Create groups from column:", - "groupAggregationInfo": "To specify recipients include header 'recipient_info' with possible values: '1' - head, '2' - recipient, '0' or empty - not a recipient." + "groupAggregationInfo": "To specify recipients include header 'recipient_info' with possible values: '1' - head, '0' or empty - recipient." } \ No newline at end of file