From d0fe1fd1fef2744ee295bbb38d95554120b179bd Mon Sep 17 00:00:00 2001 From: Christopher-walsh22 <106549296+Christopher-walsh22@users.noreply.github.com> Date: Fri, 8 Sep 2023 12:02:44 -0700 Subject: [PATCH] Re-adding spaces to possible business name endings --- api/src/importers/alc/utils/csv-utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/importers/alc/utils/csv-utils.js b/api/src/importers/alc/utils/csv-utils.js index 03a97aec0..4e85abbdf 100644 --- a/api/src/importers/alc/utils/csv-utils.js +++ b/api/src/importers/alc/utils/csv-utils.js @@ -30,7 +30,7 @@ exports.getOutcomeDescription = function(csvRow) { */ exports.getEntityType = function(csvRow) { - let options = ["Ltd.", "Ltd", "Inc.", "Inc", "Corp.", "Corp"]; + let options = [" Ltd.", " Ltd", " Inc.", " Inc", " Corp.", " Corp"]; function endsWithBusinessType(value, endings){