diff --git a/src/app/organization/organizationSettingsImportController.js b/src/app/organization/organizationSettingsImportController.js index 461553f5ba..44e15be102 100644 --- a/src/app/organization/organizationSettingsImportController.js +++ b/src/app/organization/organizationSettingsImportController.js @@ -64,7 +64,7 @@ var halfway = Math.floor(ciphers.length / 2); var last = ciphers.length - 1; if (cipherIsBadData(ciphers[0]) && cipherIsBadData(ciphers[halfway]) && cipherIsBadData(ciphers[last])) { - importError('CSV data is not formatted correctly. Please check your import file and try again.'); + importError('Data is not formatted correctly. Please check your import file and try again.'); return; } } diff --git a/src/app/tools/toolsImportController.js b/src/app/tools/toolsImportController.js index 6c8f5b7bff..5473a3bb45 100644 --- a/src/app/tools/toolsImportController.js +++ b/src/app/tools/toolsImportController.js @@ -282,7 +282,7 @@ var halfway = Math.floor(ciphers.length / 2); var last = ciphers.length - 1; if (cipherIsBadData(ciphers[0]) && cipherIsBadData(ciphers[halfway]) && cipherIsBadData(ciphers[last])) { - importError('CSV data is not formatted correctly. Please check your import file and try again.'); + importError('Data is not formatted correctly. Please check your import file and try again.'); return; } }