Skip to content

Commit

Permalink
CM-809: update group_code
Browse files Browse the repository at this point in the history
  • Loading branch information
jdolkowski committed May 20, 2024
1 parent 373688b commit af76d2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/dialogs/IndividualsUploadDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}

0 comments on commit af76d2a

Please sign in to comment.